Skip to content

Merge pull request #86 from SimonMueller/snyk-upgrade-497623f137797bd… #436

Merge pull request #86 from SimonMueller/snyk-upgrade-497623f137797bd…

Merge pull request #86 from SimonMueller/snyk-upgrade-497623f137797bd… #436

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
test:
name: Test on Node.js ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['16']
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: npm install
run: npm ci
- name: typescript build
run: npm run build
- name: lint
run: npm run lint
- name: test
run: npm test