ci: test github actions
This commit is contained in:
parent
28eb314d87
commit
4bb08df0c9
16
.github/workflows/test-dts.yml
vendored
Normal file
16
.github/workflows/test-dts.yml
vendored
Normal file
@ -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
.github/workflows/test.yml
vendored
Normal file
16
.github/workflows/test.yml
vendored
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user