-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (45 loc) · 1.3 KB
/
cypress.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
name: Cypress
on:
push:
branches: [develop]
pull_request:
branches: [main, develop]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
name: Cypress testing
runs-on: ubuntu-latest
env:
NEXT_PUBLIC_API_HOST: https://prod-mong-api.skde.org
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- name: Enable Corepack before setting up Node
run: corepack enable
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- run: corepack enable && yarn install
- run: yarn workspace skde run build
- name: Cypress run
uses: cypress-io/github-action@v6
with:
working-directory: ./apps/skde
build: yarn export
start: yarn start-server
browser: chrome
- name: Archive production artifacts
if: failure()
uses: actions/upload-artifact@v4
with:
name: cypress videos
path: apps/skde/cypress/videos
retention-days: 1