From 5d84faa6a7247c60dd710a53f044c38bc55fd444 Mon Sep 17 00:00:00 2001 From: Heather Lee Date: Mon, 9 Dec 2024 17:02:19 -0800 Subject: [PATCH] Trying to see if secrets are being loaded properly --- .github/workflows/lint.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index efde78b..18da96a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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 @@ -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