-
Notifications
You must be signed in to change notification settings - Fork 3
60 lines (50 loc) · 1.24 KB
/
ci.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
name: ci
on:
pull_request: {}
push:
branches: ["main"]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 21
cache: "npm"
- name: install
run: npm ci
- name: subgraphs
run: |
npm run dev &
npx wait-on http-get://localhost:4200/_health --timeout 5s --verbose
- name: gateway
run: |
npm run gateway:once &
npx wait-on http-get://localhost:4000/_health --timeout 5s --verbose
- name: test
run: npm run test-all
deploy:
runs-on: ubuntu-latest
name: Deploy
needs: tests
if: github.ref == 'refs/heads/main'
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 21
cache: "npm"
- name: install
run: npm ci
- name: deploy
run: npm run deploy
env:
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
CLOUDFLARE_API_TOKEN: ${{ secrets.CF_API_TOKEN }}