✅Build Status Check (main branch) #249
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: ✅Build Status Check | |
| run-name: ✅Build Status Check (${{ github.base_ref }} branch) | |
| defaults: | |
| run: | |
| shell: pwsh | |
| on: | |
| pull_request_target: | |
| branches: [main, preview] | |
| jobs: | |
| build_status_check: | |
| name: Build Status Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v5 | |
| with: | |
| repository: ${{ github.event.pull_request.head.repo.full_name }} | |
| ref: ${{ github.event.pull_request.head.ref }} | |
| - name: Set Up Deno (${{ vars.DENO_VERSION }}) | |
| uses: denoland/setup-deno@v2 | |
| with: | |
| deno-version: ${{ vars.DENO_VERSION }} | |
| - name: Run Check | |
| run: deno check ./**/*.ts; |