File tree 2 files changed +10
-10
lines changed
2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -35,13 +35,13 @@ jobs:
35
35
strategy :
36
36
matrix :
37
37
os : [ubuntu-latest]
38
- node_version : [14, 16, 18]
38
+ node_version : [14, 16, 18, 20 ]
39
39
include :
40
40
# Active LTS + other OS
41
41
- os : macos-latest
42
- node_version : 16
42
+ node_version : 18
43
43
- os : windows-latest
44
- node_version : 16
44
+ node_version : 18
45
45
fail-fast : false
46
46
47
47
name : " Build&Test: node-${{ matrix.node_version }}, ${{ matrix.os }}"
@@ -94,19 +94,19 @@ jobs:
94
94
if : github.repository == 'vitejs/vite-plugin-vue'
95
95
timeout-minutes : 10
96
96
runs-on : ubuntu-latest
97
- name : " Lint: node-16 , ubuntu-latest"
97
+ name : " Lint: node-LTS , ubuntu-latest"
98
98
steps :
99
99
- uses : actions/checkout@v3
100
100
with :
101
101
fetch-depth : 0
102
102
103
103
- name : Install pnpm
104
- uses : pnpm/action-setup@v2.4.0
104
+ uses : pnpm/action-setup@v2
105
105
106
- - name : Set node version to 16
106
+ - name : Set node version to LTS
107
107
uses : actions/setup-node@v3
108
108
with :
109
- node-version : 16
109
+ node-version : lts/*
110
110
cache : " pnpm"
111
111
112
112
- name : Install deps
Original file line number Diff line number Diff line change @@ -18,12 +18,12 @@ jobs:
18
18
uses : actions/checkout@v3
19
19
20
20
- name : Install pnpm
21
- uses : pnpm/action-setup@v2.4.0
21
+ uses : pnpm/action-setup@v2
22
22
23
- - name : Set node version to 16.x
23
+ - name : Set node version to LTS
24
24
uses : actions/setup-node@v3
25
25
with :
26
- node-version : 16.x
26
+ node-version : lts/*
27
27
registry-url : https://registry.npmjs.org/
28
28
cache : " pnpm"
29
29
You can’t perform that action at this time.
0 commit comments