Skip to content

✅CICD Build Status Check (main branch) #85

✅CICD Build Status Check (main branch)

✅CICD Build Status Check (main branch) #85

name: ✅CICD Build Status Check
run-name: ✅CICD Build Status Check (${{ github.base_ref }} branch)
defaults:
run:
shell: pwsh
on:
pull_request_target:
branches: main
jobs:
cicd_build_status_check:
name: CICD Build Status Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: ${{ vars.DENO_VERSION }}
- name: Run Build
run: |
deno run --allow-read --allow-run "./.github/cicd/scripts/deno-check.ts";