Skip to content

chore(deps): bump actions/upload-artifact from 4 to 7 #5

chore(deps): bump actions/upload-artifact from 4 to 7

chore(deps): bump actions/upload-artifact from 4 to 7 #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [22, 24]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npm run lint:check
- run: npm test -- --coverage
- name: Upload coverage
if: matrix.node == 22
uses: actions/upload-artifact@v7
with:
name: coverage-lcov
path: coverage/lcov.info