Skip to content

Commit

Permalink
fix(cicd): use node v16 in gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
uladkasach committed Nov 24, 2022
1 parent d884cb6 commit e341fea
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci-on-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ jobs:
- name: checkout
uses: actions/checkout@v1

- uses: actions/setup-node@v1
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'

- name: install
run: npm install

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-on-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

- uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'

- name: install
Expand Down
1 change: 0 additions & 1 deletion src/cache.integration.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { promises as fs } from 'fs';
import { sleep } from './utils/sleep';
import { createCache, RESERVED_CACHE_KEY_FOR_VALID_KEYS } from './cache';
import uuid from 'uuid';

jest.setTimeout(60 * 1000);

Expand Down

0 comments on commit e341fea

Please sign in to comment.