From 1fdc8c5da11e0e57f9d3a66dacfc2abfedf85232 Mon Sep 17 00:00:00 2001 From: Sam Zhou Date: Sun, 14 Jun 2020 15:19:08 -0400 Subject: [PATCH] chore(v2): Run E2E tests in CI (#2929) --- .github/workflows/e2e-test.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/e2e-test.yml diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml new file mode 100644 index 000000000000..3e8d66663309 --- /dev/null +++ b/.github/workflows/e2e-test.yml @@ -0,0 +1,32 @@ +name: E2E Test + +on: + # Trigger the workflow on push or pull request, + # but only for the master branch + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + node-version: [10.x] + steps: + - uses: actions/checkout@v1 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - name: Installation + run: yarn + - name: Setup test-website project against master release + run: yarn test:build:v2 + - name: Build test-website project + run: cd test-website && yarn build + env: + CI: true