Skip to content

Commit 9e86512

Browse files
committed
fix: Add build step
1 parent cd4dd7a commit 9e86512

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/push.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,11 @@ jobs:
4949
run: yarn install
5050
- name: Lint
5151
run: yarn lint
52+
- name: Build
53+
run: yarn build
5254
- name: test
5355
run: yarn test
54-
56+
5557
publish:
5658
name: Publish
5759
needs: test
@@ -99,4 +101,4 @@ jobs:
99101
env:
100102
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
101103
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}
102-
if: always()
104+
if: always()

tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,5 @@
2020
"baseUrl": "./",
2121
"typeRoots": ["./src/typings", "./node_modules/@types"]
2222
},
23-
"include": ["src/**/*.ts"],
24-
"exclude": ["lib", "types"]
23+
"exclude": ["lib", "types", "test", "examples"]
2524
}

0 commit comments

Comments
 (0)