From e888a836309bcae8d0fa3f00a37172f21a5477b3 Mon Sep 17 00:00:00 2001 From: Lane Seppala Date: Tue, 28 Jun 2022 11:40:22 -0600 Subject: [PATCH] Remove NPM_AUTH_TOKEN --- .github/workflows/test.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9a14ea4..e54b966 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,18 +20,13 @@ jobs: uses: actions/setup-node@v3 with: node-version: 16 - registry-url: 'https://npm.pkg.github.com' - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} - name: Install NPM dependencies run: npm ci --ignore-scripts - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} - name: Build and run tests run: npm rebuild && npm run all - name: Verify no uncommitted files run: '[ -z "$(git status --porcelain=v1 2>/dev/null)" ]' - shell: bash \ No newline at end of file + shell: bash