chore(deps): update dependency typescript to v5.7.2 #7128
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests & lint | |
permissions: | |
contents: read | |
on: | |
push: | |
branches: | |
- main | |
- vue-legacy | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
persist-credentials: false | |
- uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30 | |
- 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@015f24e6818733317a2da2edd6290ab26238649a # v5.0.7 |