We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75742d3 commit b1cbe12Copy full SHA for b1cbe12
.github/workflows/ci.yml
@@ -20,6 +20,15 @@ jobs:
20
- run: yarn install
21
- run: yarn build
22
23
+ - name: Set Chrome Version
24
+ run: |
25
+ CHROMEVER="$(chromedriver --version | cut -d' ' -f2)"
26
+ echo "Actions ChromeDriver is $CHROMEVER"
27
+ CONTENTS="$(jq '.tunnelOptions.drivers[0].name = "chrome"' < intern.json)"
28
+ CONTENTS="$(echo ${CONTENTS} | jq --arg chromever "$CHROMEVER" '.tunnelOptions.drivers[0].version = $chromever')"
29
+ echo "${CONTENTS}" > intern.json
30
+ cat intern.json
31
+
32
- name: Test
33
run: yarn test
34
0 commit comments