Skip to content

Test

Test #247

Workflow file for this run

name: Test
on:
push:
paths:
- 'src/**'
- 'package-lock.json'
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
- run: npm install -g npm
- run: npm ci
- run: npm run test:ci
- run: npm run build