chore(v2): Run E2E tests in CI (#2929)

This commit is contained in:
Sam Zhou 2020-06-14 15:19:08 -04:00 committed by GitHub
parent 8eed245000
commit 1fdc8c5da1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

32
.github/workflows/e2e-test.yml vendored Normal file
View file

@ -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