Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleJune committed Jul 30, 2023
1 parent 2fe6fa5 commit 88cab2d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,15 @@ jobs:
run: |
echo "Hello World!";
echo "DENO_DIR from variables = ${{ needs.variables.outputs.DENO_DIR }}";
echo "DENO_DIR from variables = ${{ needs.variables.outputs.DENO_DIR != '' }}";
echo "DENO_DIR from env = ${{ env.DENO_DIR }}";
echo "DENO_DIR from env = ${{ env.DENO_DIR != '' }}";
echo "CODECOV_TOKEN from variables = ${{ needs.variables.outputs.CODECOV_TOKEN }}";
echo "CODECOV_TOKEN from variables = ${{ needs.variables.outputs.CODECOV_TOKEN != '' }}";
echo "CODECOV_TOKEN from secrets = ${{ secrets.CODECOV_TOKEN }}";
echo "CODECOV_TOKEN from secrets = ${{ secrets.CODECOV_TOKEN != '' }}";
echo "FAKE from secrets = ${{ secrets.FAKE }}";
echo "FAKE from secrets = ${{ secrets.FAKE != '' }}";
- name: Clone repository
uses: actions/[email protected]
- name: Setup deno
Expand Down

0 comments on commit 88cab2d

Please sign in to comment.