Skip to content

Commit 04528b1

Browse files
committed
fix: only run on Node 16
1 parent 529a437 commit 04528b1

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
@@ -12,14 +12,14 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node: [12, 14]
15+
node: [16]
1616

1717
steps:
1818
- name: Checkout Repo
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020

2121
- name: Install Node
22-
uses: actions/setup-node@v2
22+
uses: actions/setup-node@v3
2323
with:
2424
node-version: ${{ matrix.node }}
2525

0 commit comments

Comments
 (0)