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 8e2b6b7 commit f6488fdCopy full SHA for f6488fd
.github/workflows/pull-request-code-checks.yml
@@ -0,0 +1,35 @@
1
+name: pull-request-code-checks
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ build:
10
+ name: Build
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v4
16
17
+ - name: Setup
18
+ uses: ./.github/actions/setup
19
20
+ - name: Build
21
+ run: yarn build
22
23
+ lint:
24
+ name: Lint
25
26
27
28
29
30
31
32
33
34
+ - name: Lint
35
+ run: yarn lint
0 commit comments