-
Notifications
You must be signed in to change notification settings - Fork 13
106 lines (84 loc) · 2.71 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
name: Lint
on:
push:
pull_request_target:
workflow_dispatch:
permissions: write-all
jobs:
format:
name: Format
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4.2.0
with:
ref: ${{ github.head_ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: Setup Node.JS
uses: actions/setup-node@v4.0.3
with:
node-version: 20.6.0
cache: npm
- name: Install
run: npm ci
- name: Format
run: npm run format
- name: Assert clean
if: startsWith(github.ref_name, 'dependabot/') == true
run: if [[ `git status --porcelain` ]]; then exit 1; fi
- name: Commit
uses: stefanzweifel/git-auto-commit-action@v5.0.1
with:
commit_message: Format
analyze:
name: Analyze
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4.2.0
with:
ref: ${{ github.head_ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: Setup CodeQL
uses: github/codeql-action/init@v3.26.6
with:
languages: javascript
queries: security-and-quality
- name: Analyze
uses: github/codeql-action/analyze@v3.26.6
build:
name: Build & Test
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4.2.0
with:
ref: ${{ github.head_ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: Setup Node.JS
uses: actions/setup-node@v4.0.3
with:
node-version: 20.6.0
cache: npm
- name: Install
run: npm ci
- name: Build & Test
run: npm run test
lint:
name: Lint
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4.2.0
with:
ref: ${{ github.head_ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: Setup Node.JS
uses: actions/setup-node@v4.0.3
with:
node-version: 20.6.0
cache: npm
- name: Install
run: npm ci
- name: Lint
run: npm run lint