Skip to content

CI: use NodeJS 16.x #197

CI: use NodeJS 16.x

CI: use NodeJS 16.x #197

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- uses: mymindstorm/setup-emsdk@v9
with:
version: latest
- run: emcc -v
- run: npm ci
- run: npm run package
env:
CI: true
- run: npm test
env:
CI: true