Skip to content

Commit 2079b6f

Browse files
committed
ci: add GitHub Actions workflow for linting
Add a GitHub Actions workflow that runs linting and type checking for the 2025 directory using pnpm.
1 parent 07e11cd commit 2079b6f

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/lint.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: lint
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
lint-2025:
9+
runs-on: ubuntu-latest
10+
defaults:
11+
run:
12+
working-directory: ./2025
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
17+
- uses: pnpm/action-setup@v4
18+
with:
19+
run_install: false
20+
version: 10.4.0
21+
- run: pnpm install --frozen-lockfile
22+
- run: pnpm check
23+
- run: pnpm lint
24+
25+

0 commit comments

Comments
 (0)