Merge pull request #524 from datopian/fix/cypress

[Cypress][s]: Remove cypress test for example catalogs
This commit is contained in:
Rufus Pollock 2021-03-31 17:31:24 +02:00 committed by GitHub
commit 02b7974396
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 44 additions and 44 deletions

View File

@ -1,17 +1,17 @@
name: Cypress Integration Tests
on: [push]
jobs:
cypress-run:
runs-on: ubuntu-16.04
steps:
- name: Checkout
uses: actions/checkout@v1
# name: Cypress Integration Tests
# on: [push]
# jobs:
# cypress-run:
# runs-on: ubuntu-16.04
# steps:
# - name: Checkout
# uses: actions/checkout@v1
- name: Cypress run
uses: cypress-io/github-action@v2
with:
working-directory: examples/catalog
browser: chrome
build: yarn run build
start: yarn start
wait-on: "http://localhost:3000"
# - name: Cypress run
# uses: cypress-io/github-action@v2
# with:
# working-directory: examples/catalog
# browser: chrome
# build: yarn run build
# start: yarn start
# wait-on: "http://localhost:3000"

View File

@ -1,30 +1,30 @@
name: Portal-Catalog-Tests
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: |
cd examples/catalog
yarn
- name: Run tests
run: |
cd examples/catalog
yarn test -u
# name: Portal-Catalog-Tests
# on: push
# jobs:
# build:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: Install modules
# run: |
# cd examples/catalog
# yarn
# - name: Run tests
# run: |
# cd examples/catalog
# yarn test -u
cypress-run:
runs-on: ubuntu-16.04
steps:
- name: Checkout
uses: actions/checkout@v1
# cypress-run:
# runs-on: ubuntu-16.04
# steps:
# - name: Checkout
# uses: actions/checkout@v1
- name: Cypress run
uses: cypress-io/github-action@v2
with:
working-directory: examples/catalog
browser: chrome
build: yarn run build
start: yarn start
wait-on: "http://localhost:3000"
# - name: Cypress run
# uses: cypress-io/github-action@v2
# with:
# working-directory: examples/catalog
# browser: chrome
# build: yarn run build
# start: yarn start
# wait-on: "http://localhost:3000"