Skip to content

Commit d950a1c

Browse files
committed
Add the ci part
1 parent 1f3d650 commit d950a1c

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,20 @@ env:
1313
CI: true
1414

1515
jobs:
16+
lint:
17+
name: Lint
18+
timeout-minutes: 5
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v4
22+
- uses: pnpm/action-setup@v4
23+
- uses: actions/setup-node@v4
24+
with:
25+
cache: pnpm
26+
- name: Install Dependencies
27+
run: pnpm install --frozen-lockfile
28+
- run: pnpm lint
29+
1630
tests:
1731
name: Tests
1832
timeout-minutes: 5

0 commit comments

Comments
 (0)