fix(ci): Disable cache for setup-node github action

This commit is contained in:
Pаramtamtām 2024-06-20 14:16:57 +04:00 committed by GitHub
parent 985fc18a48
commit e6f49f622d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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>