blob: b603871e5ad290392d2cb44b9ab67e2a6eeb0882 [file] [log] [blame]
name: CI
on: [pull_request]
jobs:
Build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Npm install and build
run: |
npm install
npm run build --if-present
env:
CI: true