Skip to content

Commit a1c9794

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 1b54fbb commit a1c9794

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+
- uses: pnpm/action-setup@v4
17+
with:
18+
run_install: false
19+
version: 10.4.0
20+
- run: pnpm install --frozen-lockfile
21+
- run: pnpm check
22+
- run: pnpm lint

0 commit comments

Comments
 (0)