Skip to content

Commit 33b9d37

Browse files
committed
Update CI configuration
The Github CI workflow is a bit out of date. - Update the cache action to v4. - Use the latest LTS of Node.
1 parent ade077a commit 33b9d37

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99
- uses: actions/checkout@v2
1010
- uses: actions/setup-node@v2
1111
with:
12-
node-version: '12'
13-
- uses: actions/cache@v2
12+
node-version: '22'
13+
- uses: actions/cache@v4
1414
with:
1515
path: node_modules
1616
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
1717
- run: yarn install
1818
- name: Lint
1919
run: yarn lint
2020
- name: Test
21-
run: yarn test
21+
run: yarn test

0 commit comments

Comments
 (0)