forked from currents-dev/cypress-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (41 loc) · 1.1 KB
/
e2e-config-esm-js.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
name: e2e-config-esm-js
on:
push:
jobs:
e2e-config-esm-js:
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
strategy:
matrix:
node-version: ["18"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Link monorepo packages
run: npm install
- name: config-esm-js
working-directory: ./e2e/config-esm-js
env:
CURRENTS_API_URL: http://localhost:1234
run: >
npx cypress-cloud run
--record
--parallel
--key some-key
--browser chrome
--tag smoke,linux
--spec "./cypress/e2e/*.spec.js"
--ci-build-id "${{ github.repository }}-${{ github.run_id }}-${{ github.run_attempt}}"