mit-license/.github/workflows/main.yml
Richie Bendall de9b9547de
Move to package-lock.json
Signed-off-by: Richie Bendall <richiebendall@gmail.com>
2021-10-29 01:55:11 +13:00

20 lines
406 B
YAML

name: CI
on:
- push
- pull_request
jobs:
test:
name: Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 14
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test