Skip to content

Commit

Permalink
ci: comment e2e while we wait for offline fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
varl committed Nov 30, 2020
1 parent c6a2431 commit 1b9d6b9
Showing 1 changed file with 45 additions and 45 deletions.
90 changes: 45 additions & 45 deletions .github/workflows/dhis2-verify-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,54 +102,54 @@ jobs:
- name: Test
run: yarn test

e2e:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
needs: [install]

strategy:
matrix:
containers: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

steps:
- name: Checkout
uses: actions/checkout@v2

- uses: actions/setup-node@v1
with:
node-version: 12.x

- uses: actions/cache@v2
id: yarn-cache
with:
path: '**/node_modules'
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}

- name: Install Cypress binary
run: yarn cypress install

- name: End-to-End tests
uses: cypress-io/github-action@v2
with:
install: false
record: true
parallel: true
start: ${{ env.SERVER_START_CMD }}
wait-on: ${{ env.SERVER_URL }}
wait-on-timeout: 300
cache-key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
group: 'e2e'
tag: ${{ github.event_name }}
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
COMMIT_INFO_MESSAGE: ${{ github.event.pull_request.title }}
STORYBOOK_TESTING: true
SERVER_START_CMD: 'yarn start'
SERVER_URL: 'http://localhost:3000'
# e2e:
# runs-on: ubuntu-latest
# if: "!contains(github.event.head_commit.message, '[skip ci]')"
# needs: [install]
#
# strategy:
# matrix:
# containers: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
#
# steps:
# - name: Checkout
# uses: actions/checkout@v2
#
# - uses: actions/setup-node@v1
# with:
# node-version: 12.x
#
# - uses: actions/cache@v2
# id: yarn-cache
# with:
# path: '**/node_modules'
# key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
#
# - name: Install Cypress binary
# run: yarn cypress install
#
# - name: End-to-End tests
# uses: cypress-io/github-action@v2
# with:
# install: false
# record: true
# parallel: true
# start: ${{ env.SERVER_START_CMD }}
# wait-on: ${{ env.SERVER_URL }}
# wait-on-timeout: 300
# cache-key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
# group: 'e2e'
# tag: ${{ github.event_name }}
# env:
# CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
# COMMIT_INFO_MESSAGE: ${{ github.event.pull_request.title }}
# STORYBOOK_TESTING: true
# SERVER_START_CMD: 'yarn start'
# SERVER_URL: 'http://localhost:3000'

publish:
runs-on: ubuntu-latest
needs: [build, lint, test, e2e]
needs: [build, lint, test] # add e2e if you use it
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 1b9d6b9

Please sign in to comment.