Update dependency @types/node to v20.16.15 #2026
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: ts | |
on: | |
push: | |
branches: [main] | |
paths: | |
- src/** | |
- tests/** | |
- '*.json' | |
- '*.yaml' | |
- '*.config.*' | |
- graphql-codegen.* | |
- .github/workflows/ts.yaml | |
pull_request: | |
branches: [main] | |
paths: | |
- src/** | |
- tests/** | |
- '*.json' | |
- '*.yaml' | |
- '*.config.*' | |
- graphql-codegen.* | |
- .github/workflows/ts.yaml | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: corepack enable pnpm | |
- run: pnpm i | |
- run: pnpm lint | |
- run: pnpm test | |
- run: pnpm build | |
- name: Run int128/workflow-run-summary-action | |
uses: ./ | |
generate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: corepack enable pnpm | |
- run: pnpm i | |
- run: pnpm format | |
- run: pnpm graphql-codegen | |
- uses: int128/update-generated-files-action@v2 |