Skip to content

Commit 47f1b26

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 47f1b26

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/lint.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
- run: pnpm install --frozen-lockfile
19+
- run: pnpm check
20+
- run: pnpm lint
21+
22+

0 commit comments

Comments
 (0)