-
-
Notifications
You must be signed in to change notification settings - Fork 354
34 lines (26 loc) · 670 Bytes
/
re-lint.yml
File metadata and controls
34 lines (26 loc) · 670 Bytes
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
name: Lint
on: [workflow_call]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24.x]
steps:
- name: Checkout source files
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Setup Node.js and pnpm
uses: ./.github/actions/setup-node-pnpm
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: pnpm install
- name: Run Astro diagnostics
run: pnpm check:astro
env:
CI: true
- name: Run lint checks
run: pnpm lint
env:
CI: true