-
Notifications
You must be signed in to change notification settings - Fork 125
107 lines (95 loc) · 2.64 KB
/
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
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
name: CI
on: [pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-v2-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-v2-
- run: yarn install
- run: yarn build
- name: Upload djangobuilder4 dist directory
uses: actions/upload-artifact@v1
with:
name: djangobuilder4_dist
path: ./packages/djangobuilder4/dist
- name: Upload djangobuilder.io dist directory
uses: actions/upload-artifact@v1
with:
name: djangobuilder.io_dist
path: ./packages/djangobuilder.io/dist
smoke_tests:
name: Core - Smoke tests
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: yarn
- run: yarn smoketest
core_tests:
name: Core - Unit tests
needs: [smoke_tests]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: yarn
- run: yarn coretest
test_v4:
name: DB4 - Unit Tests
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: yarn
- run: yarn test_v4
cli_tests:
name: DB.io - CLI Tests
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: yarn
- run: script/cli_test.sh
io_tests:
name: DB.io - Unit Tests
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: yarn
- run: yarn test_io
e2e_tests:
name: DB.io - E2E Tests
needs: [io_tests]
runs-on: ubuntu-latest
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
FIRESTORE_EMULATOR_HOST: localhost:8080
DISPLAY: ":99"
steps:
- uses: actions/checkout@v4
- run: sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 &
- run: yarn
- name: Download dist
uses: actions/download-artifact@v1
with:
name: djangobuilder4_dist
- run: yarn ci
- uses: actions/upload-artifact@v2
if: ${{ always() }}
with:
name: firebase-debug
path: firebase-debug.log