Skip to content

Merge pull request #25 from nickdeis/fix-hyperlink #10

Merge pull request #25 from nickdeis/fix-hyperlink

Merge pull request #25 from nickdeis/fix-hyperlink #10

Workflow file for this run

name: Tests
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# Have to use 18.x and up because later versions of eslint require structuredClone
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Run tests against node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm ci
- run: npm test