chore(deps): update actions/checkout action to v4 #3016
Workflow file for this run
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: Verify changes | |
on: [pull_request] | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x, 20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install shellcheck (used for testing) | |
run: sudo apt-get install -y shellcheck | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
cache: "pnpm" | |
cache-dependency-path: '**/pnpm-lock.yaml' | |
node-version: ${{ matrix.node-version }} | |
- run: pnpm install --frozen-lockfile | |
- name: Verify changes | |
run: pnpm verify:bail | |
- name: Publish coverage to codecov.io | |
uses: codecov/codecov-action@v3 | |
if: success() && matrix.node-version == '20.x' | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./codecov.yml |