forked from currents-dev/cypress-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (36 loc) · 1.26 KB
/
e2e-smoke-windows.yaml
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
name: e2e-smoke-windows
on:
push:
# branches: [main]
jobs:
build:
if: "!contains(toJSON(github.event.commits.*.message), '[skip ci]')"
runs-on: windows-latest
env:
DEBUG: currents:*
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: Test ESM imports
working-directory: ./e2e/config-esm-js
run: >
npx cypress-cloud run
--record
--parallel
--key ${{ secrets.CURRENTS_RECORD_KEY }}
--browser chrome
--tag smoke,linux
--spec "./cypress/e2e/*.spec.js"
--ci-build-id "config-esm-js-${{ github.repository }}-${{ github.run_id }}-${{ github.run_attempt}}"
- name: Run Cypress with cypress-cloud
working-directory: ./examples/webapp
run: |
npx cypress-cloud run --parallel --record --key ${{ secrets.CURRENTS_RECORD_KEY }} --ci-build-id "smoke-windows-${{ github.repository }}-${{ github.run_id }}-${{ github.run_attempt}}" --spec "cypress/e2e_smoke/*.spec.js" --tag smoke,windows