chore(deps): pin dependencies #3584
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
jobs: | |
migrate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- uses: ./.github/actions/prepare | |
- run: pnpm run build | |
- run: pnpm run test:migrate | |
# The template's ESLint ignorePatterns only ignores coverage, not coverage-* | |
# https://github.com/JoshuaKGoldberg/create-typescript-app/issues/1131 | |
- if: always() | |
run: mv coverage coverage-migrate | |
- if: always() | |
name: Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
files: coverage-migrate/lcov.info | |
flags: migrate | |
name: Test Migration Script | |
on: | |
pull_request: ~ | |
push: | |
branches: | |
- main |