-
Notifications
You must be signed in to change notification settings - Fork 1
93 lines (77 loc) · 2.53 KB
/
test.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
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
name: Run tests
on:
workflow_call:
schedule:
- cron: "50 3 * * *"
pull_request:
types: [opened, synchronize]
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Read backend node version from package.json
uses: skjnldsv/read-package-engines-version-actions@v3
with:
path: ./backend/
id: backend-engines
- name: Setup Node.js for backend
uses: actions/setup-node@v4
with:
node-version: ${{ steps.backend-engines.outputs.nodeVersion }}
- name: Install backend dependencies & run linter
working-directory: ./backend
run: |
npm install
npm run lint
- name: Read frontend node version from package.json
uses: skjnldsv/read-package-engines-version-actions@v3
with:
path: ./frontend/
id: frontend-engines
- name: Setup Node.js for frontend
uses: actions/setup-node@v4
with:
node-version: ${{ steps.frontend-engines.outputs.nodeVersion }}
- name: Install frontend dependencies & run linter
working-directory: ./frontend
run: |
npm install
npm run lint
cypress:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Read backend node version from package.json
uses: skjnldsv/read-package-engines-version-actions@v3
with:
path: ./backend/
id: backend-engines
- name: Setup Node.js for initializing db with backend's npm scripts
uses: actions/setup-node@v4
with:
node-version: ${{ steps.backend-engines.outputs.nodeVersion }}
- name: Start db container
run: docker compose -f compose.ci.yaml up db -d
- name: Create, migrate and seed db
env:
DATABASE_URL: postgres://postgres@localhost:5432/dev_postgres
run: |
cd backend
npm install
npm run db:create
npm run db:migrate
npm run db:seed:all
- name: Start backend, frontend and nginx
run: docker compose -f compose.ci.yaml up -d
- name: Run Cypress tests
uses: cypress-io/github-action@v6
with:
working-directory: ./frontend
config: baseUrl=http://localhost:3000/projekti
install-command: npm install
browser: chrome
record: true
env:
CYPRESS_PROJECT_ID: ${{ secrets.CYPRESS_PROJECT_ID }}
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}