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 e40dceb commit 7ee7c94Copy full SHA for 7ee7c94
.github/workflows/pr-check.yml
.github/workflows/verify.yml
@@ -0,0 +1,33 @@
1
+name: Verify
2
+
3
+on:
4
+ push:
5
+ branches: [master, main]
6
+ pull_request:
7
8
+permissions:
9
+ contents: read
10
11
+jobs:
12
+ lint:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v4
17
18
+ - name: Install
19
+ uses: ./.github/actions/install
20
21
+ - name: Lint
22
+ run: pnpm lint
23
+ build:
24
25
26
27
28
29
30
31
32
33
+ run: pnpm build
0 commit comments