chore(deps): update dependency @release-it/conventional-changelog to v8.0.2 #1910
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: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/prepare | |
with: | |
node-version: ${{ matrix.node_version }} | |
- run: pnpm remove typescript | |
- run: pnpm add -D typescript@"${{ matrix.ts_version }}" | |
- run: pnpm run test --coverage | |
- if: matrix.node_version == '18.x' | |
name: Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
flags: ${{ matrix.ts_version }} | |
strategy: | |
fail-fast: false | |
matrix: | |
node_version: | |
- 16.14.0 | |
- 18.x | |
ts_version: | |
- 4.3.5 | |
- 4.6.4 | |
- 4.9.5 | |
- latest | |
name: Test | |
on: | |
pull_request: ~ | |
push: | |
branches: | |
- main |