Skip to content

chore(master): release 1.0.0 (#4) #22

chore(master): release 1.0.0 (#4)

chore(master): release 1.0.0 (#4) #22

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Run tests on Node.js ${{ matrix.node-version }}
runs-on: self-hosted-arc
strategy:
matrix:
node-version: [18, 20, 22, 24]
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run lint
run: npm run lint
- name: Check formatting
run: npm run check-formatting
- name: Run build
run: npm run build