Skip to content

Commit 4c98c57

Browse files
🏗 Switch from travis to gh actions
1 parent ae59792 commit 4c98c57

File tree

2 files changed

+23
-13
lines changed

2 files changed

+23
-13
lines changed

.github/workflows/test.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
build:
11+
name: Check TypeScript and Test
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-node@v2
16+
with:
17+
node-version: '16'
18+
cache: 'yarn'
19+
- run: yarn install
20+
- run: yarn build
21+
- run: yarn check-types
22+
- run: yarn test:ci
23+
- uses: codecov/codecov-action@v2

.travis.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)