File tree Expand file tree Collapse file tree 3 files changed +2082
-653
lines changed Expand file tree Collapse file tree 3 files changed +2082
-653
lines changed Original file line number Diff line number Diff line change 8
8
- main
9
9
jobs :
10
10
build :
11
- runs-on : ubuntu-20.04
11
+ runs-on : ubuntu-latest
12
12
strategy :
13
13
matrix :
14
- node-version : [18.x, 20.x ]
14
+ node-version : [18.x]
15
15
steps :
16
16
- uses : actions/checkout@v2
17
17
- name : Use Node.js ${{ matrix.node-version }}
18
18
uses : actions/setup-node@v1
19
19
with :
20
20
node-version : ${{ matrix.node-version }}
21
21
- name : Install the Coach
22
- run : npm ci
22
+ run : EDGEDRIVER_SKIP_DOWNLOAD=true npm ci
23
23
- name : Install latest Chrome
24
24
run : |
25
- wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
25
+ wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
26
26
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
27
27
sudo apt-get update
28
28
sudo apt-get --only-upgrade install google-chrome-stable
You can’t perform that action at this time.
0 commit comments