Skip to content

Commit e8d3f26

Browse files
Add build to sanity check workflow (#66)
move build to sanity check workflow
1 parent 9ade402 commit e8d3f26

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

.github/workflows/code-style-checks.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,3 @@ jobs:
1111
run: yarn
1212
- name: Check formatting
1313
run: yarn format:check
14-
- name: Check build
15-
run: yarn build

.github/workflows/sanity.yml

+13
Original file line numberDiff line numberDiff line change
@@ -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
11+
run: yarn
12+
- name: Check build
13+
run: yarn build

0 commit comments

Comments
 (0)