Skip to content

Commit

Permalink
ci: test github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed May 7, 2021
1 parent 28eb314 commit 4bb08df
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test-dts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: 'test-dts'
on:
push:
branches:
- '**'
pull_request:
branches:
- master
jobs:
size:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: bahmutov/npm-install@v1
- name: test dts
run: yarn test-dts
16 changes: 16 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: 'test'
on:
push:
branches:
- '**'
pull_request:
branches:
- master
jobs:
size:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: bahmutov/npm-install@v1
- name: test dts
run: yarn test --ci

0 comments on commit 4bb08df

Please sign in to comment.