Skip to content

Commit

Permalink
fix(ci): Disable cache for setup-node github action
Browse files Browse the repository at this point in the history
tarampampam authored Jun 20, 2024
1 parent 985fc18 commit e6f49f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -41,7 +41,7 @@ jobs: # Docs: <https://git.io/JvxXE>
steps:
- uses: actions/checkout@v4

- {uses: actions/setup-node@v4, with: {node-version: 16, cache: 'npm'}}
- {uses: actions/setup-node@v4, with: {node-version: 16}}

- name: Install linter
run: npm install -g ajv-cli # Package page: <https://www.npmjs.com/package/ajv-cli>
@@ -55,7 +55,7 @@ jobs: # Docs: <https://git.io/JvxXE>
steps:
- uses: actions/checkout@v4

- {uses: actions/setup-node@v4, with: {node-version: 16, cache: 'npm'}}
- {uses: actions/setup-node@v4, with: {node-version: 16}}

- name: Install eslint
run: npm install -g eslint@v8 # Package page: <https://www.npmjs.com/package/eslint>

0 comments on commit e6f49f6

Please sign in to comment.