-
Notifications
You must be signed in to change notification settings - Fork 309
169 lines (165 loc) · 5.01 KB
/
linters.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
name: Linters and tests
on:
push:
branches: [master, develop, released, hotfix/*, release/*]
pull_request:
branches: [master, develop, released, hotfix/*, release/*]
merge_group:
types: [checks_requested]
permissions:
contents: read
packages: read
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
cancel-in-progress: true
jobs:
codegen:
runs-on: ubuntu-latest
permissions:
packages: read
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".node-version"
cache: "pnpm"
- name: Authenticate NPM
uses: DimensionDev/github-token-action@latest
with:
registry: true
- run: git config --global url."https://github.com/".insteadOf [email protected]
- run: pnpm install
- run: npx gulp lint-package-json
- uses: EndBug/add-and-commit@v9
with:
message: 'fix: package.json'
- run: npx gulp codegen
- run: pnpm run lingui:extract
- run: pnpm run lingui:compile
- uses: EndBug/add-and-commit@v9
with:
message: 'fix: run codegen'
- run: npx gulp sync-languages
- uses: EndBug/add-and-commit@v9
with:
message: 'fix: run sync-languages'
- run: npx gulp fix-plugins-tsconfig
- uses: EndBug/add-and-commit@v9
with:
message: 'fix: packages/plugins/tsconfig.json'
prettier:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- uses: actions/setup-node@v4
- run: npx [email protected] --write .
- uses: EndBug/add-and-commit@v9
with:
message: 'fix: prettier'
markdownlint:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- uses: actions/setup-node@v4
- run: npx markdownlint-cli --fix .
- uses: EndBug/add-and-commit@v9
with:
message: 'fix: markdownlint'
anti-trojan-source:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: npx anti-trojan-source --files='packages/**/src/**/*.{ts,tsx,js}'
type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".node-version"
cache: "pnpm"
- name: Authenticate NPM
uses: DimensionDev/github-token-action@latest
with:
registry: true
- run: git config --global url."https://github.com/".insteadOf [email protected]
- run: pnpm install
- run: npx gulp codegen
- run: npx gulp typescript
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".node-version"
cache: "pnpm"
- name: Authenticate NPM
uses: DimensionDev/github-token-action@latest
with:
registry: true
- run: git config --global url."https://github.com/".insteadOf [email protected]
- run: pnpm install
- run: npx gulp codegen
- run: npx gulp polyfill
- run: pnpm run test
eslint:
runs-on: ubuntu-latest
permissions:
packages: read
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".node-version"
cache: "pnpm"
- name: Authenticate NPM
uses: DimensionDev/github-token-action@latest
with:
registry: true
- name: Get cache date
id: get-date
run: echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_STATE
shell: bash
- name: Restore ESLint cache
uses: actions/cache@v4
with:
path: .eslintcache
key: linter-v2-${{ steps.get-date.outputs.date }}
restore-keys: linter-v2-
- run: git config --global url."https://github.com/".insteadOf [email protected]
- run: pnpm install
- run: npx gulp codegen
- name: Run Eslint
run: |
export NODE_OPTIONS="--max-old-space-size=8192"
# report to stdio and to a file, it's cached so the second run should be fast
pnpm run lint:ci
pnpm run lint:ci-report
- uses: EndBug/add-and-commit@v9
with:
message: 'fix: eslint'
- name: Upload eslint report
uses: actions/upload-artifact@v4
with:
name: eslint
path: reports/junit