File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change 28
28
runs-on : ubuntu-latest
29
29
strategy :
30
30
matrix :
31
- node : ['20'] # latest (16+) not functional
31
+ node : ['22']
32
32
steps :
33
33
- uses : actions/checkout@v1
34
34
- name : install system dependencies
43
43
build :
44
44
strategy :
45
45
matrix :
46
- platform : [ubuntu-latest, macos -latest, windows -latest]
46
+ platform : [ubuntu-latest, windows -latest, macos -latest]
47
47
node : [ '18', '20', '22' ]
48
48
name : Node ${{ matrix.node }} (${{ matrix.platform }})
49
49
runs-on : ${{ matrix.platform }}
53
53
- uses : actions/setup-node@v1
54
54
with :
55
55
node-version : ${{ matrix.node }}
56
- - name : Install Google Chrome on macOS
57
- if : runner.os == 'macOS'
58
- run : brew install --cask google-chrome
59
- - name : Install Google Chrome on Windows
60
- if : runner.os == 'Windows'
61
- run : choco install googlechrome
62
56
- name : install dependencies
63
57
run : yarn
64
58
- name : patch packages
You can’t perform that action at this time.
0 commit comments