We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe237e6 commit 30a0af8Copy full SHA for 30a0af8
.github/workflows/build-trunk.yml
@@ -14,6 +14,18 @@ jobs:
14
steps:
15
- uses: actions/checkout@v2
16
17
+ - name: Setup Chrome
18
+ uses: browser-actions/setup-chrome@latest
19
+
20
+ - name: Download and setup ChromeDriver
21
+ run: |
22
+ CHROME_VERSION=$(google-chrome-stable --version | cut -d ' ' -f3) &&
23
+ CHROMEDRIVER_VERSION=$(curl -s "https://chromedriver.storage.googleapis.com/LATEST_RELEASE_$CHROME_VERSION") &&
24
+ curl -LO "https://chromedriver.storage.googleapis.com/$CHROMEDRIVER_VERSION/chromedriver_linux64.zip" &&
25
+ unzip chromedriver_linux64.zip &&
26
+ sudo mv chromedriver /usr/local/bin/ &&
27
+ sudo chmod +x /usr/local/bin/chromedriver
28
29
- name: Install server dependencies
30
run: npm ci
31
working-directory: server
0 commit comments