forked from INSM-TUM/SimuBridge--Main
-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (39 loc) · 1.13 KB
/
CI.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
name: CI
on: [push]
jobs:
test:
name: Cypress Test
timeout-minutes: 10
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
#- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
# - name: Checkout
# uses: actions/checkout@v2
- name: Node install
run: npm install --legacy-peer-deps
- name: Cypress run
# uses: cypress-io/github-action@v5
uses: cypress-io/github-action@v6
with:
working-directory: frontend
install: false
build: npm run build
start: npm start
wait-on: "http://localhost:3000"
wait-on-timeout: 120
- name: Upload Failure screenshots
uses: actions/upload-artifact@v3
if: failure()
with:
name: cypress-screenshots
path: frontend/cypress/screenshots