Skip to content

chore(main): release notifications 1.2.8 #207

chore(main): release notifications 1.2.8

chore(main): release notifications 1.2.8 #207

Workflow file for this run

name: Test
on:
push
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [20.x, 22.x]
os: [ubuntu-latest, macos-latest, windows-latest]
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
- name: linting
run: npm run lint