Skip to content

Commit 843f925

Browse files
committed
feat: update GitHub Actions workflow to use Node.js 22 and latest action versions
1 parent af6209c commit 843f925

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/blank.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,19 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
node: [20]
16+
node: [22]
1717
timeout-minutes: 300
1818
steps:
1919
- name: checkout pushed commit
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v3
2121
with:
2222
ref: ${{ github.event.pull_request.head.sha }}
23-
- name: run lint and test
24-
uses: actions/setup-node@v1
23+
- name: setup node
24+
uses: actions/setup-node@v3
2525
with:
2626
node-version: ${{ matrix.node }}
27-
- run: yarn install
28-
- run: yarn typecheck
29-
- run: yarn lint
30-
- run: yarn test
27+
- run: |
28+
yarn install
29+
yarn typecheck
30+
yarn lint
31+
yarn test

0 commit comments

Comments
 (0)