-
Notifications
You must be signed in to change notification settings - Fork 2
63 lines (53 loc) · 1.69 KB
/
lint.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
name: Build and Lint
on:
push:
branches-ignore:
- "master"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-lint:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: User Node.js LTS
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install pnpm
uses: pnpm/action-setup@v2.2.4
with:
run_install: false
- name: Install Dependencies
run: pnpm install --frozen-lockfile
# need to build before lint check because packages is using interlinked workspace dependencies
- name: Build the packages
id: build
if: ${{ success() && !failure() }}
run: pnpm build
- name: Lint
id: lint
run: pnpm run lint
- name: Linter Failed
if: ${{ failure() }}
uses: actions/github-script@v5
with:
script: |
const { data: pullRequestData } = await github.rest.repos.listPullRequestsAssociatedWithCommit({
owner: context.repo.owner,
repo: context.repo.repo,
commit_sha: context.payload.after
})
if(pullRequestData[0]){
await github.rest.issues.createComment({
issue_number: pullRequestData[0].number,
owner: context.repo.owner,
repo: context.repo.repo,
body: `### 🚨 Linter failed`
})
} else {
throw new Error('Pull request data not found')
}