From: Evan You Date: Sat, 14 Sep 2019 14:33:30 +0000 (-0400) Subject: [ci] setup github actions X-Git-Tag: v3.0.0-alpha.0~770 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aa7cdd8de22718a7057ecc2ebc64c987007113dd;p=thirdparty%2Fvuejs%2Fcore.git [ci] setup github actions --- diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml new file mode 100644 index 0000000000..e646aebf3a --- /dev/null +++ b/.github/workflows/nodejs.yml @@ -0,0 +1,20 @@ +name: Node CI + +on: [push] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Use Node.js + uses: actions/setup-node@v1 + with: + node-version: '12.x' + - name: test + run: | + yarn + yarn test + env: + CI: true + TEST: true