Skip to content

Commit 4bb08df

Browse files
committed
ci: test github actions
1 parent 28eb314 commit 4bb08df

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

.github/workflows/test-dts.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: 'test-dts'
2+
on:
3+
push:
4+
branches:
5+
- '**'
6+
pull_request:
7+
branches:
8+
- master
9+
jobs:
10+
size:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v1
14+
- uses: bahmutov/npm-install@v1
15+
- name: test dts
16+
run: yarn test-dts

.github/workflows/test.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: 'test'
2+
on:
3+
push:
4+
branches:
5+
- '**'
6+
pull_request:
7+
branches:
8+
- master
9+
jobs:
10+
size:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v1
14+
- uses: bahmutov/npm-install@v1
15+
- name: test dts
16+
run: yarn test --ci

0 commit comments

Comments
 (0)