chore: 🤖 update actions/checkout action to v6 #1228
This file contains hidden or 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: Integration | |
| on: | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| call_pnpm_caching_workflow: | |
| name: Set pnpm caching | |
| uses: ./.github/workflows/pnpm-caching.yaml | |
| with: | |
| runner: ubuntu-latest | |
| node-version: 18 | |
| pnpm-version: 7.14.1 | |
| test_depcheck: | |
| needs: call_pnpm_caching_workflow | |
| name: Testing Depcheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Node environment | |
| uses: Exlint/[email protected] | |
| with: | |
| node-version: 18 | |
| package-manager: pnpm | |
| package-manager-version: 7.14.1 | |
| - name: Test Depcheck | |
| run: pnpm depcheck | |
| test_typescript: | |
| needs: call_pnpm_caching_workflow | |
| name: Testing TypeScript | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Node environment | |
| uses: Exlint/[email protected] | |
| with: | |
| node-version: 18 | |
| package-manager: pnpm | |
| package-manager-version: 7.14.1 | |
| - name: Test TypeScript | |
| run: pnpm type-check | |
| test_prettier: | |
| needs: call_pnpm_caching_workflow | |
| name: Testing Prettier | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Node environment | |
| uses: Exlint/[email protected] | |
| with: | |
| node-version: 18 | |
| package-manager: pnpm | |
| package-manager-version: 7.14.1 | |
| - name: Test Prettier | |
| run: pnpm prettier |