Skip to content

New package version 1.2.0 #17

New package version 1.2.0

New package version 1.2.0 #17

Workflow file for this run

name: 'run tests'
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
permissions:
contents: read
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [ 16, 18 ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run test