Skip to content

Commit

Permalink
Add Github Actions "E2E Test" workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rcowsill committed Jan 17, 2021
1 parent 38f7011 commit c57fd29
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ Dockerfile
docker-compose.yml
.dockerignore
.git
.github
.gitignore
46 changes: 46 additions & 0 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: E2E Test
on: [push, pull_request]

jobs:
e2e-test:
name: Node.js
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
node-version: ["10.x", "12.x", "14.x"]

steps:
- name: Checkout https://github.com/${{ github.repository }}@${{ github.ref }}
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: Use cache
uses: actions/cache@v2
with:
path: |
~/.npm
~/.cache
key: ${{ runner.os }}-node${{ matrix.node-version }}-E2E-${{ hashFiles('package-lock.json') }}

- name: Install dependencies
run: |
npm ci
npm run cy:verify
- name: Start MongoDB
run: |
docker run -d -p 27017:27017 mongo:4.0
timeout 60s bash -c 'until nc -z -w 2 localhost 27017 && echo MongoDB ready; do sleep 2; done'
- name: Run E2E test suite
run: |
NODE_ENV=test npm start -- --silent &
npm run test:ci

0 comments on commit c57fd29

Please sign in to comment.