0

Specify node version for browser tests

This commit is contained in:
Gabe Kangas 2023-03-17 18:24:17 -07:00 committed by GitHub
parent 29820d7265
commit 3869bed0bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,6 +9,7 @@ on:
paths:
- 'web/**'
- 'test/automated/browser/**'
jobs:
cypress-run:
runs-on: ubuntu-latest
@ -21,13 +22,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-go@v3
- uses: actions/setup-node@v3
with:
go-version: '1.18.8'
cache: true
- name: Install Google Chrome
run: sudo apt-get install google-chrome-stable
node-version: 18.9.0
- name: Cache node modules
uses: actions/cache@v3
@ -41,6 +38,14 @@ jobs:
${{ runner.os }}-build-
${{ runner.os }}-
- uses: actions/setup-go@v3
with:
go-version: '1.18.8'
cache: true
- name: Install Google Chrome
run: sudo apt-get install google-chrome-stable
- name: Run Browser tests
uses: nick-fields/retry@v2
with: