From d8972d13dce602a899ff06d4993cffc33fdfc1b5 Mon Sep 17 00:00:00 2001 From: Joseph R Miles Date: Sat, 10 Jul 2021 20:20:06 -0700 Subject: [PATCH] :construction_worker: ci: Verifying that GPR+login works --- .github/workflows/test.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9b3d1ac..8f1d922 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,11 +17,15 @@ jobs: - uses: actions/setup-node@v2 with: node-version: 15 - # registry-url: https://npm.pkg.github.com - registry-url: https://registry.npmjs.org + # We must indicate the Github Package Registry, as our config packages + # are there (and also NPM). Frustratingly, NPM prefers the GPR over + # NPM - even when we indicate that we want to pull from NPM instead of + # the GPR. + registry-url: https://npm.pkg.github.com - run: npm ci env: + # Provide a "password" to GPR so that we can pull our packages. NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - uses: actions/upload-artifact@v2