Skip to content
This repository was archived by the owner on Jan 13, 2024. It is now read-only.

Commit 614c02a

Browse files
authored
chore: upgrade actions runners (#1767)
1 parent 39e9985 commit 614c02a

File tree

1 file changed

+8
-18
lines changed

1 file changed

+8
-18
lines changed

.github/workflows/ci.yml

+8-18
Original file line numberDiff line numberDiff line change
@@ -16,27 +16,17 @@ jobs:
1616

1717
runs-on: ${{ matrix.os }}
1818
steps:
19-
- name: Checkout
20-
uses: actions/checkout@v2
21-
22-
- name: Use Node.js ${{ matrix.node-version }}
23-
uses: actions/[email protected]
19+
- uses: actions/checkout@v3
20+
- uses: actions/setup-node@v3
2421
with:
2522
node-version: ${{ matrix.node-version }}
26-
- uses: actions/cache@v2
23+
- uses: actions/cache@v3
2724
with:
2825
path: ~/.pkg-cache/
29-
key: ${{ matrix.os }}-${{ matrix.node-version }}
30-
31-
- name: Install deps
32-
run: yarn install
26+
key: ${{ matrix.os }}-${{ matrix.node-version }}
3327

34-
- name: Lint
35-
if: matrix['node-version'] == '16.x' && matrix['os'] == 'ubuntu-latest'
28+
- run: yarn install
29+
- if: matrix['node-version'] == '16.x' && matrix['os'] == 'ubuntu-latest'
3630
run: yarn lint
37-
38-
- name: Build
39-
run: yarn build
40-
41-
- name: Test
42-
run: yarn test
31+
- run: yarn build
32+
- run: yarn test

0 commit comments

Comments
 (0)