This repository was archived by the owner on Jun 10, 2025. It is now read-only.
chore(deps): update dependency @types/node to v22.15.31 (#721) #1789
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: Check | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: | |
| contents: read # for checkout | |
| actions: read # for actions-timeline | |
| jobs: | |
| check: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: actions-timeline | |
| # cspell:ignore kesin | |
| uses: Kesin11/actions-timeline@427ee2cf860166e404d0d69b4f2b24012bb7af4f # v2.2.3 | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@735343b667d3e6f658f44d0eca948eb6282f2b76 # v2.0.2 | |
| - name: Install Dependencies | |
| run: bun install --frozen-lockfile | |
| - name: "commitlint (push: initial commit)" | |
| id: commitlint-push-initial | |
| # commit hash will be 0000000000000000000000000000000000000000 if it doesn't exist | |
| if: github.event_name == 'push' && github.event.before == '0000000000000000000000000000000000000000' | |
| run: bun run commitlint --verbose --to ${{github.event.after}} | |
| - name: commitlint (push) | |
| if: github.event_name == 'push' && steps.commitlint-push-initial.outcome == 'skipped' | |
| run: bun run commitlint --verbose --from ${{github.event.before}} --to ${{github.event.after}} | |
| - name: commitlint (pull_request) | |
| if: github.event_name == 'pull_request' | |
| run: | | |
| bun run commitlint --verbose --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} | |
| - name: Biome | |
| run: bun run biome ci --error-on-warnings | |
| - name: cspell | |
| run: bun run cspell "**/*" | |
| - name: tsc | |
| run: bun run tsc | |
| - name: knip | |
| run: bun run knip |