Skip to content

see if github action works #6

see if github action works

see if github action works #6

Workflow file for this run

name: Run Tests
on:
push:
branches:
- master
pull_request:
types: ['opened', 'reopened', 'synchronize']
jobs:
test:
strategy:
matrix:
nodejs: [ '12', '14', '16', '18', '20' ]
runs-on: ubuntu-latest
permissions:
actions: write
contents: read
pull-requests: write
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.11.0
with:
access_token: ${{ github.token }}
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.nodejs }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.nodejs }}
- run: yarn install --frozen-lockfile
- run: yarn test