-
Notifications
You must be signed in to change notification settings - Fork 5
58 lines (48 loc) · 1.43 KB
/
e2e-onboarding-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: E2E onboarding tests
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
jobs:
e2e-onboarding-tests:
runs-on: ubuntu-latest
container:
image: node:16
strategy:
fail-fast: false
matrix:
# Add Firefox after fixing CI errors
browser: [ 'chrome' ]
node-version: [ 16.x ]
services:
selenium:
image: selenium/standalone-${{ matrix.browser }}
steps:
- uses: actions/checkout@v3
- name: Cache npm dependencies
id: cache-npm
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: |
npm install
- name: Run E2E onboarding tests on ${{ matrix.browser }}
run: npm run test:e2e:${{ matrix.browser }}:headless:onboarding
env:
SELENIUM_HOST: selenium
SELENIUM_PORT: 4444