diff --git a/.github/workflows/npm.yml b/.github/workflows/npm.yml index e3c59291..68121e23 100644 --- a/.github/workflows/npm.yml +++ b/.github/workflows/npm.yml @@ -32,10 +32,10 @@ jobs: cache-name: cache-node-modules with: path: ./node_modules - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }}-${{ hashFiles('**/package-lock.json') }}-node-^16.13 - run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.MS_READ_PACKAGES_GITHUB_PAT }}" >> ~/.npmrc name: Configure Credentials For GitHub Packages - - run: npm install + - run: npm ci if: steps.cache.outputs.cache-hit != 'true' working-directory: . - run: npm run prettier @@ -56,10 +56,10 @@ jobs: cache-name: cache-node-modules with: path: ./node_modules - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }}-${{ hashFiles('**/package-lock.json') }}-node-^16.13 - run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.MS_READ_PACKAGES_GITHUB_PAT }}" >> ~/.npmrc name: Configure Credentials For GitHub Packages - - run: npm install + - run: npm ci if: steps.cache.outputs.cache-hit != 'true' working-directory: . - run: npm run eslint @@ -80,10 +80,10 @@ jobs: cache-name: cache-node-modules with: path: ./node_modules - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }}-${{ hashFiles('**/package-lock.json') }}-node-^16.13 - run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.MS_READ_PACKAGES_GITHUB_PAT }}" >> ~/.npmrc name: Configure Credentials For GitHub Packages - - run: npm install + - run: npm ci if: steps.cache.outputs.cache-hit != 'true' working-directory: . - run: npm run test