Skip to content

Commit 0732c04

Browse files
authored
Create build.yml (#37)
1 parent 7f570fc commit 0732c04

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Build
2+
on:
3+
pull_request:
4+
branches: [ 'master' ]
5+
push:
6+
branches: [ 'master' ]
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: actions/setup-node@v2
14+
with:
15+
node-version: '14'
16+
- run: npm install
17+
- run: npm install -g typescript
18+
- run: tsc

0 commit comments

Comments
 (0)