-
Notifications
You must be signed in to change notification settings - Fork 119
129 lines (105 loc) · 3.05 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
name: CI
on: [push, pull_request]
jobs:
client_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/setup
- run: bash ./packages/client/build_client.sh
server_build:
runs-on: ubuntu-latest
env:
working-directory: ./server
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Install Golang
uses: actions/setup-go@v4
- name: Compile the Golang code
run: bash build_server.sh
working-directory: ${{ env.working-directory }}
lint:
runs-on: ubuntu-latest
strategy:
matrix:
packageName: [client, data, game, scripts, server]
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/setup
- name: Create the "version.js" file
run: bash ./packages/client/set_version.sh
- name: Lint the TypeScript code
run: bash ./packages/${{ matrix.packageName }}/lint.sh
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/setup
- name: Create the "version.js" file
run: bash ./packages/client/set_version.sh
- name: Test the TypeScript code
run: npm run test
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/setup
- name: Check that the entire repository is formatted with Prettier
run: npx prettier --log-level=warn --check .
spell_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/setup
- name: Spell check the entire repository
run: bash spell_check.sh
lint_monorepo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/setup
- name: Check templates
run: bash check_templates.sh
- name: Check "variants.json" and "variants.txt"
run: npm run check-variant-files
- name: Check "package.json" files
run: npm run lint-package-json
deploy_docs_website:
if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request'
needs: [lint]
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/setup
- name: Use TypeDoc to automatically generate documentation
run: npm run docs
working-directory: ./packages/game
- uses: actions/upload-pages-artifact@v2
with:
path: ./packages/game/docs
- uses: actions/deploy-pages@v2
discord:
name: Discord Failure Notification
needs:
[
client_build,
server_build,
lint,
test,
format,
spell_check,
lint_monorepo,
deploy_docs_website,
]
if: failure()
runs-on: ubuntu-latest
steps:
- uses: sarisia/actions-status-discord@v1
with:
webhook: ${{ secrets.DISCORD_WEBHOOK }}
status: failure
title: ""