diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ccbfe723..2161ff41 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,3 +29,13 @@ jobs: run: npm run lint - name: Test run: npm run test + - name: Debug Secret + run: | + if [ -z "$NPM_TOKEN" ]; then + echo "SECRET IS EMPTY" + exit 1 + else + echo "SECRET IS DEFINED" + fi + env: + NPM_TOKEN: ${{ secrets.NPM_TOKEN }}