diff --git a/.github/workflows/code_quality.yaml b/.github/workflows/code_quality.yaml index 3729b52..2e012b4 100644 --- a/.github/workflows/code_quality.yaml +++ b/.github/workflows/code_quality.yaml @@ -5,6 +5,9 @@ on: name: Check Code Quality +env: + NEXT_PRIVATE_APPLICATION_ID: ${{ secrets.NEXT_PRIVATE_APPLICATION_ID }} + jobs: code-quality: name: Check Code Quality @@ -33,6 +36,9 @@ jobs: - name: Install dependencies run: npm ci + - name: echo + run: echo ${NEXT_PRIVATE_APPLICATION_ID//-/} + # Disabling audit step since node_fetch vuln introduced by next is not fixable atm # - name: Run npm audit (on production dependencies) # run: npm audit --production