From 4bb08df0c9327208311d19be00d9fe19f044cba7 Mon Sep 17 00:00:00 2001 From: Evan You Date: Fri, 7 May 2021 09:39:13 -0400 Subject: [PATCH] ci: test github actions --- .github/workflows/test-dts.yml | 16 ++++++++++++++++ .github/workflows/test.yml | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 .github/workflows/test-dts.yml create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test-dts.yml b/.github/workflows/test-dts.yml new file mode 100644 index 00000000..e805670e --- /dev/null +++ b/.github/workflows/test-dts.yml @@ -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 \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..65c57bb8 --- /dev/null +++ b/.github/workflows/test.yml @@ -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 \ No newline at end of file