-
Notifications
You must be signed in to change notification settings - Fork 130
108 lines (90 loc) · 3.15 KB
/
Copy pathfunctional-tests.yml
File metadata and controls
108 lines (90 loc) · 3.15 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
name: functional
on:
pull_request:
merge_group:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
cypress:
runs-on: ubuntu-latest
env:
DATABASE_URL: postgres://cfpb:cfpb@localhost/cfgov
MAPBOX_ACCESS_TOKEN: ${{ secrets.MAPBOX_ACCESS_TOKEN }}
DJANGO_ADMIN_USERNAME: admin
DJANGO_ADMIN_PASSWORD: admin
services:
elasticsearch:
image: elasticsearch:7.10.1
ports:
- 9200:9200
options: -e="discovery.type=single-node" --health-cmd="curl http://localhost:9200/_cluster/health" --health-interval=10s --health-timeout=5s --health-retries=10
postgres:
image: postgres:17
env:
POSTGRES_USER: cfpb
POSTGRES_PASSWORD: cfpb
POSTGRES_DB: cfgov
ports:
- 5432:5432
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
fetch-depth: 2
- run: corepack enable
- name: Set up Node
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: '26.x'
cache: yarn
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: 3.13
- name: Install backend dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements/local.txt
# - name: Get changed files
# id: changed-files
#uses: tj-actions/changed-files@v44.5.2
#with:
#separator: '___'
- name: Set up initial data
run: ./refresh-data.sh test.sql.gz
- name: Prepare config
#env:
# CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
run: ./scripts/cypress-fast-specs.sh
- name: Cache Cypress binary
id: cypress-cache
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
with:
path: ~/.cache/Cypress
key: cypress-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- name: Install frontend dependencies
run: yarn install --immutable --immutable-cache
- name: Install Cypress binary
if: steps.cypress-cache.outputs.cache-hit != 'true'
run: npx cypress install
- name: Verify Cypress
run: npx cypress verify
- name: Run Cypress
uses: cypress-io/github-action@783cb3f07983868532cabaedaa1e6c00ff4786a8 # v7
with:
install: false
build: yarn build
start: python cfgov/manage.py runserver 0.0.0.0:8000
wait-on: 'http://localhost:8000'
env:
MAPBOX_ACCESS_TOKEN: ${{ secrets.MAPBOX_ACCESS_TOKEN }}
CYPRESS_ENVIRONMENT: github
- name: Store any Cypress failure screenshots
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
if: failure()
with:
name: cypress_failure_screenshots
path: ./test/cypress/screenshots/
retention-days: 1