Skip to content
This repository was archived by the owner on Sep 27, 2023. It is now read-only.

Commit e0a8432

Browse files
authored
ci: use node 16 for tests and run prettier check (#452) [skip ci]
* ci: use node v16 * ci: use actions/cache@v2 * ci: run prettier check * Revert "ci: run prettier check" This reverts commit 0a6fd59.
1 parent c6f0df7 commit e0a8432

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
node-version: [12.x, 14.x, 15.x]
11+
node-version: [12.x, 14.x, 16.x]
1212
steps:
1313
- uses: actions/checkout@v2
1414
- uses: actions/setup-node@v2
1515
with:
1616
node-version: ${{ matrix.node-version }}
1717
- name: Cache node_modules
1818
id: cache-modules
19-
uses: actions/cache@v1
19+
uses: actions/cache@v2
2020
with:
2121
path: node_modules
2222
key: ${{ matrix.node-version }}-${{ runner.OS }}-build-${{ hashFiles('yarn.lock') }}

0 commit comments

Comments
 (0)