-
Notifications
You must be signed in to change notification settings - Fork 2
49 lines (39 loc) · 1.26 KB
/
cypress-maintenance-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
49
name: 🌲🔧 Cypress Maintenance CI
on:
push:
branches: [main]
pull_request: {}
jobs:
build:
# Available versions:
# https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
architecture: "x64"
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"
cache-dependency-path: |
context/package-lock.json
end-to-end/package-lock.json
- run: npm --version
- name: Install maintenance build node dependencies
run: npm ci --prefix context
- name: Install cypress node dependencies
run: npm ci --prefix end-to-end
- name: Set up git config to make dev-start.sh happy
run: git config --global submodule.recurse true
- name: Run test script
run: etc/test/test-cypress.sh maintenance
env:
GH_ACTIONS_BRANCH: ${{ github.ref }}
GH_ACTIONS: true