Skip to content

Commit

Permalink
Add e2e test action script
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejkang committed Aug 24, 2021
1 parent 6875bc2 commit ed06d1a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/healthCheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: HealthCheck

on:
push:
branches:
- main

jobs:
test-e2e:
name: Test e2e

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '14.x'
- name: Install packages
run: yarn
- name: Run e2e tests
run: yarn test:e2e

0 comments on commit ed06d1a

Please sign in to comment.