This repository was archived by the owner on Oct 6, 2025. It is now read-only.
Bump typescript from 5.9.2 to 5.9.3 #32
Workflow file for this run
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: Dependabot Test Build | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| pull-requests: write | |
| issues: write | |
| contents: read | |
| id-token: write | |
| jobs: | |
| test-build: | |
| if: github.actor == 'dependabot[bot]' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v5 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Install Dependencies | |
| run: | | |
| npm install -g yarn | |
| yarn install --frozen-lockfile | |
| - name: Build Production | |
| run: yarn build |