-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (42 loc) · 1.22 KB
/
ci.yaml
File metadata and controls
45 lines (42 loc) · 1.22 KB
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
name: CI
on:
pull_request_target:
branches:
- '**'
jobs:
PrettierAndLint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v3
with:
version: 8
run_install: true
- run: pnpm run prettier
- run: pnpm run lint
- run: pnpm run markdownlint
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v3
with:
version: 8
run_install: true
- run: pnpm run test
GoTest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
go:
- 'packages/commithelper-go/**'
- if: steps.filter.outputs.go == 'true'
uses: actions/setup-go@v4
with:
go-version: '1.24'
- if: steps.filter.outputs.go == 'true'
run: cd packages/commithelper-go && go test -v ./...