Skip to content

Merge pull request #60 from QoderAI/dependabot/github_actions/actions… #158

Merge pull request #60 from QoderAI/dependabot/github_actions/actions…

Merge pull request #60 from QoderAI/dependabot/github_actions/actions… #158

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: ${{ matrix.os }} / Node ${{ matrix.node }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
node: 22.20.0
- os: macos-latest
node: 22.20.0
- os: windows-latest
node: 22.20.0
- os: ubuntu-latest
node: 24.x
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npm test
- run: npm run pack:verify