Skip to content

✅Build Status Check (main branch) #174

✅Build Status Check (main branch)

✅Build Status Check (main branch) #174

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@v4
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;