forked from thinkingmachines/unicef-ai4d-research-bank
-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (36 loc) · 858 Bytes
/
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
name: Test application
on:
push:
branches: [main]
paths:
- 'src/'
- 'public/fixtures'
pull_request:
branches: [main]
paths:
- 'src/'
workflow_dispatch:
jobs:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: pnpm/[email protected]
with:
version: latest
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'pnpm'
- name: Install dependencies
run: pnpm i && pnpm cypress install && cp .env.github .env
- name: Validate format
run: pnpm run-p lint
- name: Validate unit tests
run: pnpm test:ci
- name: Build test environment
run: pnpm build:test-env
- name: Validate e2e
run: pnpm test:e2e:ci