Skip to content

Commit

Permalink
add CI to run lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mansona committed May 24, 2024
1 parent 17e5699 commit 7f08d92
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

on:
workflow_dispatch:
pull_request:
push:
branches:
- main

jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: 18
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm lint

0 comments on commit 7f08d92

Please sign in to comment.