Skip to content

Commit f12c6ef

Browse files
Merge pull request #46 from kaleido-io/tsc
Add build to PR checks
2 parents c7c80f8 + 596477b commit f12c6ef

File tree

13 files changed

+2275
-29
lines changed

13 files changed

+2275
-29
lines changed

.github/workflows/tsc.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Typescript
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
workflow_dispatch:
9+
10+
jobs:
11+
build:
12+
name: tsc
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v1
16+
- name: install node v16
17+
uses: actions/setup-node@v1
18+
with:
19+
node-version: 16
20+
- name: npm install
21+
run: npm install
22+
- name: tsc
23+
run: npm t

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
node_modules
2-
build
2+
build
3+
coverage
4+
.nyc_output

0 commit comments

Comments
 (0)