Skip to content

Standardize repo config (#131) #127

Standardize repo config (#131)

Standardize repo config (#131) #127

Workflow file for this run

name: Node CI Suite
on:
push
jobs:
test:
runs-on: ${{ matrix.os }}
name: Node Tests
strategy:
matrix:
node-version: [ 20.x, 22.x ]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install -g yarn
- run: yarn --frozen-lockfile --ignore-engines
- name: unit tests
run: yarn test
- name: linting
run: yarn lint