-
Notifications
You must be signed in to change notification settings - Fork 24
58 lines (43 loc) · 1.23 KB
/
test.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
51
52
53
54
55
56
57
58
name: Jest Tests
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Install Frontend Dependencies
run: yarn install
- name: Run Emulator
run: yarn emulator & echo $! > emulator_pid.txt
- name: Seed Database
run: yarn seed
- name: Run Jest Tests
run: yarn test --ci --watchAll=false --silent
- name: Cypress:Start the development server
run: PORT=3000 yarn dev & echo $! > frontend_pid.txt
- name: Cypress:Wait for Frontend to be Ready
run: npx wait-on http://localhost:3000
- name: Cypress:Run Tests
run: yarn test:cypress
- name: Stop Emulator
run: kill $(cat emulator_pid.txt)
if: always()
- name: Stop Front
run: kill $(cat frontend_pid.txt)
if: always()
- name: Install Backend Dependencies
run: |
cd functions
yarn install
- name: Run Backend Tests
run: |
cd functions
yarn test --ci --watchAll=false