Create pull_request.yml

This commit is contained in:
Francisco Hodge 2020-03-12 19:20:56 -04:00 committed by GitHub
parent 6402cd380f
commit 9ad622a991
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

24
.github/workflows/pull_request.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: Build PR
on: [pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [12.x]
os: [ubuntu-latest]
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, build, and test
run: |
npm install
npm run start -- --testMode
npm run demo
npm run coverage
env:
CI: true