Skip to content

chore(deps): bump actions/checkout from 6.0.3 to 7.0.0 in the github-actions group #132

chore(deps): bump actions/checkout from 6.0.3 to 7.0.0 in the github-actions group

chore(deps): bump actions/checkout from 6.0.3 to 7.0.0 in the github-actions group #132

Workflow file for this run

name: Build & Test
on:
push:
branches: [main]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Use Node v22.x
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 22.x
registry-url: "https://registry.npmjs.org"
cache: "npm"
- name: Install Dependencies
run: npm ci --ignore-scripts
- name: Lint
run: npm run lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x, latest]
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Use Node v${{ matrix.node-version }}
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: ${{ matrix.node-version }}
registry-url: "https://registry.npmjs.org"
cache: "npm"
- name: Install Dependencies
run: npm ci --ignore-scripts
- name: Test
run: npm run test