Skip to content

Commit

Permalink
ci: flush ci cache
Browse files Browse the repository at this point in the history
Node.js 16.14.2, which is default in GitHub Action, introduces
a bug of npm, and should be fixed in 2022/04/05.

Ref: nodejs/node#42397
  • Loading branch information
Keith-CY committed Apr 7, 2022
1 parent 2f77c5d commit ce5e40e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/package.yml
Expand Up @@ -38,7 +38,7 @@ jobs:
path: |
node_modules
*/*/node_modules
key: 2022-04-02-${{ runner.os }}-${{ hashFiles('**/yarn.lock')}}
key: 2022-04-07-${{ runner.os }}-${{ hashFiles('**/yarn.lock')}}

- name: Add msbuild to PATH
if: matrix.os == 'windows-2019'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/package_for_test.yml
Expand Up @@ -33,7 +33,7 @@ jobs:
path: |
node_modules
*/*/node_modules
key: 2022-04-02-${{ runner.os }}-${{ hashFiles('**/yarn.lock')}}
key: 2022-04-07-${{ runner.os }}-${{ hashFiles('**/yarn.lock')}}

- name: Add msbuild to PATH
if: matrix.os == 'windows-2019'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Expand Up @@ -35,7 +35,7 @@ jobs:
path: |
node_modules
*/*/node_modules
key: 2022-04-02-${{ runner.os }}-${{ hashFiles('**/yarn.lock')}}
key: 2022-04-07-${{ runner.os }}-${{ hashFiles('**/yarn.lock')}}

- name: Install libudev
if: matrix.os == 'ubuntu-20.04'
Expand Down

0 comments on commit ce5e40e

Please sign in to comment.