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