We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ade402 commit e8d3f26Copy full SHA for e8d3f26
.github/workflows/code-style-checks.yaml
@@ -11,5 +11,3 @@ jobs:
11
run: yarn
12
- name: Check formatting
13
run: yarn format:check
14
- - name: Check build
15
- run: yarn build
.github/workflows/sanity.yml
@@ -0,0 +1,13 @@
1
+name: Sanity Check
2
+
3
+on: push
4
5
+jobs:
6
+ sanity-check:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v3
10
+ - name: Install modules
+ run: yarn
+ - name: Check build
+ run: yarn build
0 commit comments