Skip to content

Update repo

Update repo #1

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [ 'master' ]
env:
CI: true
jobs:
Test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [20.x, '${{ vars.NODE_VERSION }}' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test