We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b47998 commit 44768a0Copy full SHA for 44768a0
1 file changed
.github/workflows/ci.yaml
@@ -0,0 +1,23 @@
1
+name: CI
2
+on:
3
+ pull_request:
4
+ branches: ['main']
5
+jobs:
6
+ lint-and-test:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Checkout Code
10
+ uses: actions/checkout@v4
11
+ - name: Setup PNPM
12
+ uses: pnpm/action-setup@v4
13
+ - name: Setup Node.js
14
+ uses: actions/setup-node@v4
15
+ with:
16
+ cache: 'pnpm'
17
+ node-version-file: '.nvmrc'
18
+ - name: Install dependencies
19
+ run: pnpm install --frozen-lockfile
20
+ - name: Lint
21
+ run: pnpm lint
22
+ - name: Test
23
+ run: pnpm test
0 commit comments