File tree 4 files changed +37
-4
lines changed
4 files changed +37
-4
lines changed Original file line number Diff line number Diff line change 6
6
v14 :
7
7
runs-on : ubuntu-22.04
8
8
container :
9
- image : " ubuntu:22.04"
9
+ image : ' ubuntu:22.04'
10
10
steps :
11
11
- name : Install required dependencies
12
12
run : |
35
35
v16 :
36
36
runs-on : ubuntu-22.04
37
37
container :
38
- image : " ubuntu:22.04"
38
+ image : ' ubuntu:22.04'
39
39
steps :
40
40
- name : Install required dependencies
41
41
run : |
64
64
v18 :
65
65
runs-on : ubuntu-22.04
66
66
container :
67
- image : " ubuntu:22.04"
67
+ image : ' ubuntu:22.04'
68
68
steps :
69
69
- name : Install required dependencies
70
70
run : |
90
90
- name : Test
91
91
run : yarn test-ci
92
92
93
+ v20 :
94
+ runs-on : ubuntu-22.04
95
+ container :
96
+ image : ' ubuntu:22.04'
97
+ steps :
98
+ - name : Install required dependencies
99
+ run : |
100
+ apt update
101
+ apt install --yes sudo
102
+ sudo apt install --yes git
103
+ sudo apt install --yes curl
104
+ curl --location https://deb.nodesource.com/setup_20.x | sudo --preserve-env bash -
105
+ sudo DEBIAN_FRONTEND=noninteractive apt install --yes nodejs
106
+ - uses : actions/checkout@v3
107
+ # workaround for https://github.com/actions/runner/issues/2033
108
+ - name : ownership workaround
109
+ run : git config --global --add safe.directory '*'
110
+ - name : Install yarn
111
+ run : |
112
+ npm install --global yarn
113
+ node --version
114
+ yarn global add yarn@latest
115
+ - name : Install dependencies
116
+ run : yarn install --ignore-engines --frozen-lockfile
117
+ - name : Build packages
118
+ run : yarn build
119
+ - name : Test
120
+ run : yarn test-ci
121
+
93
122
windows :
94
123
runs-on : windows-2022
95
124
steps :
Original file line number Diff line number Diff line change 1
- 16
1
+ 18
Original file line number Diff line number Diff line change
1
+ nodejs 18.16.0
Original file line number Diff line number Diff line change @@ -260,6 +260,9 @@ npm login
260
260
nvm use (if you have nvm installed)
261
261
```
262
262
263
+ - [ nvm] ( https://github.com/nvm-sh/nvm )
264
+ - [ asdf] ( https://asdf-vm.com/ ) is supported as well
265
+
263
266
``` sh
264
267
yarn clean
265
268
yarn install
You can’t perform that action at this time.
0 commit comments