We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8f023c commit fd894cfCopy full SHA for fd894cf
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - master
8
+ pull_request: {}
9
10
+concurrency:
11
+ group: ci-${{ github.head_ref || github.ref }}
12
+ cancel-in-progress: true
13
14
+jobs:
15
+ lint:
16
+ name: 'Lint'
17
+ runs-on: ubuntu-latest
18
+ timeout-minutes: 10
19
20
+ steps:
21
+ - uses: actions/checkout@v4
22
+ - uses: pnpm/action-setup@v4
23
+ - uses: actions/setup-node@v4
24
+ with:
25
+ node-version: 18
26
+ cache: pnpm
27
+ - run: pnpm i --frozen-lockfile
28
+ - run: pnpm run lint
0 commit comments