From: Evan You Date: Fri, 7 May 2021 13:39:13 +0000 (-0400) Subject: ci: test github actions X-Git-Tag: v3.1.0-beta.1~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4bb08df0c9327208311d19be00d9fe19f044cba7;p=thirdparty%2Fvuejs%2Fcore.git ci: test github actions --- diff --git a/.github/workflows/test-dts.yml b/.github/workflows/test-dts.yml new file mode 100644 index 0000000000..e805670e1e --- /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 0000000000..65c57bb8b7 --- /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