-
Notifications
You must be signed in to change notification settings - Fork 1
56 lines (46 loc) · 1.3 KB
/
e2e-smoke-api.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
name: e2e-smoke-api
on:
push:
jobs:
e2e-smoke:
if: "!contains(toJSON(github.event.commits.*.message), '[skip ci]')"
runs-on: ubuntu-latest
env:
DEBUG: currents:*
services:
director:
image: agoldis/sorry-cypress-director
ports:
- 1234:1234
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16"
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Link monorepo packages
run: npm install
- name: Run Cypress with cypress-cloud CJS
working-directory: ./examples/webapp
env:
CURRENTS_RECORD_KEY: "any"
CURRENTS_API_URL: http://localhost:1234
run: |
npm run cypress:script
- name: Run Cypress with cypress-cloud TS
working-directory: ./examples/webapp
env:
CURRENTS_RECORD_KEY: "any"
CURRENTS_API_URL: http://localhost:1234
run: |
npm run cypress:script:ts
- name: Run Cypress with cypress-cloud ESM
working-directory: ./examples/webapp
env:
CURRENTS_RECORD_KEY: "any"
CURRENTS_API_URL: http://localhost:1234
run: |
npm run cypress:script:esm