Fork PR Testing #31
Workflow file for this run
This file contains 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: Fork PR Testing | |
defaults: | |
run: | |
shell: pwsh | |
on: | |
pull_request_target: | |
branches: master | |
jobs: | |
create_and_cache_data: | |
name: Create and cache data | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set Up Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.35.x | |
- name: Run Script | |
run: | | |
Write-Host "::notice::Workspace Dir Path: ${{ github.workspace }}"; | |
deno run ` | |
-A ` | |
"${{ github.workspace }}/.github/cicd/script-run-test.ts"; |