-
Notifications
You must be signed in to change notification settings - Fork 7
89 lines (77 loc) · 2.15 KB
/
main.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
name: "actions"
on:
pull_request:
branches:
- main
types:
- opened
- edited
- reopened
- synchronize
push:
branches:
- main
repository_dispatch:
types:
- langdata-update
jobs:
test:
timeout-minutes: 15
env:
SERVER_ENV: local
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: npm
- name: cache playwright browsers
id: playwright-cache
uses: actions/cache@v3
with:
path: ~/.cache/ms-playwright
key: playwright-${{ hashFiles('**/package-lock.json') }}
- run: npm ci
- run: npx playwright install-deps
- run: npm run build
- run: npm test
- run: npm run lint
staging:
if: ${{ github.ref != 'refs/heads/main' && github.repository_owner == 'xicri' }}
timeout-minutes: 10
env:
SERVER_ENV: staging
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@master
- name: generate Dockerfile_staging
run: |
cp Dockerfile Dockerfile_staging
sed -i -e 's/production/staging/g' Dockerfile_staging
- run: flyctl deploy --remote-only --app=genshin-dictionary-staging --dockerfile=Dockerfile_staging
production:
if: ${{ github.ref == 'refs/heads/main' && github.repository_owner == 'xicri' }}
needs: test
timeout-minutes: 10
env:
SERVER_ENV: production
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
CLOUDFLARE_ZONE: ${{ secrets.CLOUDFLARE_ZONE }}
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: npm
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only
- name: Purge Cloudflare edge cache
run: |
npm ci --omit=dev
npm install esno
npm run purge-cache