-
Notifications
You must be signed in to change notification settings - Fork 1
61 lines (51 loc) · 1.11 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
name: ci
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
release:
types: [released]
jobs:
avoid_redundancy:
runs-on: ubuntu-latest
steps:
- name: cancel previous redundant builds
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
lint:
runs-on: ubuntu-latest
name: lint project
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/setup
- run: pnpm lint
test:
runs-on: ubuntu-latest
name: test project
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/setup
- run: pnpm test
format:
runs-on: ubuntu-latest
name: format code
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/setup
- run: pnpm format
- name: commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "chore: format code"