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 69e022e commit 7e4d1a9Copy full SHA for 7e4d1a9
.github/workflows/ci.yml
@@ -0,0 +1,35 @@
1
+name: 🌈 CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
8
+ pull_request:
9
10
11
12
+ workflow_dispatch:
13
14
+jobs:
15
+ unit test and lint:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v3
19
20
+ - uses: pnpm/action-setup@v2
21
22
+ - name: Setup Node.js
23
+ uses: actions/setup-node@v3
24
+ with:
25
+ node-version: 18
26
+ cache: pnpm
27
28
+ - name: Install
29
+ run: pnpm install --no-frozen-lockfile
30
31
+ - name: lint fix
32
+ run: pnpm run lint:fix
33
34
+ - name: unit test
35
+ run: pnpm run test
0 commit comments