-
Notifications
You must be signed in to change notification settings - Fork 26
39 lines (39 loc) · 1.1 KB
/
e2e.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
name: End-to-end tests
on:
push:
branches:
- master
- release-candidate
- release
tags:
- v*
pull_request:
branches:
- master
- release-candidate
- release
jobs:
cypress-run:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- name: Checkout
# https://github.com/actions/checkout/releases/tag/v4.2.2
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Setup nodejs
# https://github.com/actions/setup-node/releases/tag/v4.1.0
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
with:
node-version: ${{ matrix.node-version }}
# Install NPM dependencies, cache them correctly
# and run all Cypress tests
- name: Cypress run
# https://github.com/cypress-io/github-action/releases/tag/v6.7.7
uses: cypress-io/github-action@f1f0912d392f0d06bdd01fb9ebe3b3299e5806fb
with:
start: npm start
wait-on: 'http://localhost:3000'
wait-on-timeout: 120
browser: chrome