chore: 🤖 update dependency @types/node to v20.17.4 #773
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: 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 |