-
Notifications
You must be signed in to change notification settings - Fork 11
59 lines (49 loc) · 1.28 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
name: ci
on:
pull_request:
branches:
- 'master'
push:
branches:
- 'master'
merge_group:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- uses: ./.github/actions/setup-js-env
- run: pnpm run build-common
- run: pnpm run format
- run: git diff --exit-code
- run: pnpm exec prettier --check .
- run: pnpm exec tsc
- run: pnpm run lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
repository: 'bangumi/dev-env'
path: 'dev-env'
- run: mv dev-env $HOME/dev-env
- run: cd ~/dev-env && docker compose up -d
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-js-env
- run: bash $HOME/dev-env/wait_mysql_ready.sh
- run: pnpm run test --coverage
timeout-minutes: 2
env:
REDIS_URI: 'redis://:redis-pass@127.0.0.1:6379/0'
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: docker build -t tmp -f Dockerfile .
- run: docker run tmp --help