-
Notifications
You must be signed in to change notification settings - Fork 4
38 lines (38 loc) · 879 Bytes
/
pr.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
name: pr
concurrency:
group: ${{github.head_ref}}
cancel-in-progress: true
on:
- pull_request
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: pnpm check:format
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: pnpm check:lint
types:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: pnpm check:types
test:
strategy:
matrix:
os: ['ubuntu-latest']
node-version: [16.x, 18.x]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
with:
node-version: ${{matrix.node-version}}
- run: pnpm build
- run: pnpm test