Skip to content

Commit

Permalink
chore(v2): Run E2E tests in CI (#2929)
Browse files Browse the repository at this point in the history
  • Loading branch information
SamChou19815 committed Jun 14, 2020
1 parent 8eed245 commit 1fdc8c5
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 1fdc8c5

Please sign in to comment.