Skip to content

chore(deps): bump actions/upload-artifact from 4.6.2 to 5.0.0 #221

chore(deps): bump actions/upload-artifact from 4.6.2 to 5.0.0

chore(deps): bump actions/upload-artifact from 4.6.2 to 5.0.0 #221

Workflow file for this run

name: Build & Test
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24.x]
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Use Node v${{ matrix.node-version }}
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
- name: Build
run: node --run build
- name: Lint
run: node --run lint
- name: Test
run: node --run test