Skip to content

Commit 99bf7ba

Browse files
committed
test(ci): check versions
1 parent a95b199 commit 99bf7ba

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,27 @@ permissions:
1111
contents: read
1212

1313
jobs:
14+
check_npm_version_ubuntu_24:
15+
runs-on: ubuntu-24.04
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Set up Node 20.x
19+
uses: actions/setup-node@v4
20+
with:
21+
node-version: 20.x
22+
- name: Check npm version
23+
run: npm --version
24+
check_npm_version_ubuntu_22:
25+
runs-on: ubuntu-22.04
26+
steps:
27+
- uses: actions/checkout@v4
28+
- name: Set up Node 20.x
29+
uses: actions/setup-node@v4
30+
with:
31+
node-version: 20.x
32+
- name: Check npm version
33+
run: npm --version
34+
1435
lint:
1536
runs-on: ubuntu-24.04
1637
steps:

0 commit comments

Comments
 (0)