Skip to content

1.1.3

1.1.3 #13

Workflow file for this run

name: Test Node.js Package
on:
push:
branches:
- "master"
- "develop"
pull_request:
types: [ready_for_review, synchronize, opened]
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16.x"
cache: "npm"
- run: npm ci
- run: npm test