Skip to content

Commit d868b2f

Browse files
update github actions from v1 to v3
1 parent 2f6df65 commit d868b2f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci-lint.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [16.x, 18.x]
19+
node: [14, 16, 18]
2020

2121
steps:
22-
- uses: actions/checkout@v2
23-
- name: Use Node.js ${{ matrix.node-version }}
24-
uses: actions/setup-node@v1
22+
- uses: actions/checkout@v3
23+
- name: Use Node.js ${{ matrix.node }}
24+
uses: actions/setup-node@v3
2525
with:
26-
node-version: ${{ matrix.node-version }}
26+
node-version: ${{ matrix.node }}
2727
- run: npm ci
2828
- run: npm run lint

0 commit comments

Comments
 (0)