Skip to content

chore(deps): update actions/checkout action to v4.2.0 #6936

chore(deps): update actions/checkout action to v4.2.0

chore(deps): update actions/checkout action to v4.2.0 #6936

Workflow file for this run

name: Tests & lint
permissions: read-all
on:
push:
branches:
- main
- vue-legacy
pull_request:
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- uses: cachix/install-nix-action@ba0dd844c9180cbf77aa72a116d6fbc515d0e87b # v27
- run: nix-shell --pure --run "pnpm install --frozen-lockfile"
- name: Typecheck
run: nix-shell --pure --run "pnpm run typecheck"
- name: Build
run: nix-shell --pure --run "pnpm run build"
- name: Lint
run: nix-shell --pure --run "pnpm run lint"
- name: Test
run: nix-shell --pure --run "pnpm test"
- name: Mutation testing
run: nix-shell --pure --run "pnpm run test-mutation"
- name: Dry run release
run: nix-shell --pure --run "pnpm publish --dry-run --recursive --provenance --access public --no-git-checks"
- uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0