Skip to content

chore: bump actions/checkout from 6.0.2 to 7.0.0 in /.github/workflows #170

chore: bump actions/checkout from 6.0.2 to 7.0.0 in /.github/workflows

chore: bump actions/checkout from 6.0.2 to 7.0.0 in /.github/workflows #170

Workflow file for this run

name: CI
on: [push, pull_request]
permissions: {}
jobs:
test:
permissions:
contents: read
strategy:
matrix:
node: ["24.x"]
platform: [ubuntu-latest]
name: Node v${{matrix.node}} ((${{matrix.platform}}))
runs-on: ${{matrix.platform}}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: ${{matrix.node}}
cache: 'pnpm'
- name: install dependencies
run: pnpm install --frozen-lockfile
- name: lint code
run: pnpm run lint
- name: build project
run: pnpm run build
- name: run tests
run: pnpm run test
- name: coverage
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
if: github.actor != 'dependabot[bot]'
with:
fail_ci_if_error: true
verbose: false
token: ${{ secrets.CODECOV_TOKEN }}
env:
CI: true