Skip to content

Commit

Permalink
Trying to see if secrets are being loaded properly
Browse files Browse the repository at this point in the history
  • Loading branch information
hthr-lee committed Dec 10, 2024
1 parent 4181a7c commit 5d84faa
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
steps:
- name: Check out Git repository
uses: actions/checkout@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Cache Node Modules
uses: actions/cache@v2
Expand All @@ -24,6 +26,9 @@ jobs:
with:
node-version: 16

- name: List Secrets
run: echo "Secrets: ${{ secrets }}"

- name: Test Secret Availability
run: |
if [ -z "${{ secrets.DOM_MUTATOR_ACCESS_KEY }}" ]; then
Expand Down

0 comments on commit 5d84faa

Please sign in to comment.