Skip to content

chore(deps): bump @actions/core from 2.0.1 to 2.0.2 #11

chore(deps): bump @actions/core from 2.0.1 to 2.0.2

chore(deps): bump @actions/core from 2.0.1 to 2.0.2 #11

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20, 22, 24]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Format
run: npm run format
- name: Test
run: npm test