-
Notifications
You must be signed in to change notification settings - Fork 2
109 lines (102 loc) · 2.86 KB
/
pr-commit.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
name: PR Commit
on:
pull_request:
branches: [main]
env:
WORKSPACE_ROOT: .
jobs:
lint:
name: Lint
runs-on: ubuntu-20.04
steps:
- name: Checkout code into workspace directory
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ./.github/actions/env-setup
- name: Lint source code
run: pnpm run lint
check-format:
name: Check Format
runs-on: ubuntu-20.04
steps:
- name: Checkout code into workspace directory
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ./.github/actions/env-setup
- name: Check code format
run: pnpm run format:check
unit-tests:
name: Unit Tests
runs-on: ubuntu-20.04
steps:
- name: Checkout code into workspace directory
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ./.github/actions/env-setup
- name: Install redis
run: sudo apt-get install -y redis-tools redis-server
- name: Verify that redis is up
run: redis-cli ping
- name: Build server
run: pnpm run build
- name: Run unit tests
run: pnpm run test
integration-tests:
name: Integration Tests
runs-on: ubuntu-20.04
steps:
- name: Checkout code into workspace directory
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ./.github/actions/env-setup
- name: Install redis
run: sudo apt-get install -y redis-tools redis-server
- name: Verify that redis is up
run: redis-cli ping
- name: Build server
run: pnpm run build
- name: Run server
run: pnpm run start &
- name: Wait for server to start
run: sleep 15
- name: Run integration tests
run: pnpm run integration
build-server:
name: Build server
runs-on: ubuntu-20.04
steps:
- name: Checkout code into workspace directory
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ./.github/actions/env-setup
- name: Build server
run: pnpm run build
# build-web:
# name: Build client library
# runs-on: ubuntu-20.04
# steps:
# - name: Checkout code into workspace directory
# uses: actions/checkout@v3
# with:
# fetch-depth: 0
# - uses: ./.github/actions/env-setup
# - name: Build web
# run: pnpm run build:web
# build-wasm:
# name: Build wasm libraries
# runs-on: ubuntu-20.04
# steps:
# - name: Checkout code into workspace directory
# uses: actions/checkout@v3
# with:
# fetch-depth: 0
# - uses: ./.github/actions/env-setup
# - name: Install wasm-pack
# run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
# - name: Build image-rs
# run: pnpm run build:image-rs