Skip to content

chore: release 12.4.2-beta.0 #1000

chore: release 12.4.2-beta.0

chore: release 12.4.2-beta.0 #1000

Workflow file for this run

name: Node CI Suite
on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: 22.x
cache: npm
- run: npm ci
- name: linting
run: npm run lint
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- name: unit tests
run: npm test