Create node.js.yml

deprecated/mblf-compiler-nodejs
Raymon Zutekouw 3 years ago committed by Raymonzut
parent e07bdcf5b9
commit 01a12f5424
No known key found for this signature in database
GPG Key ID: 1E9BCC39EDD1DD53
  1. 26
      .github/workflows/node.js.yml

@ -0,0 +1,26 @@
name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test
Loading…
Cancel
Save