-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
trying to get around the error: > Cypress could not verify that this server is running: > http://localhost:3000 > We are verifying this server because it has been configured as your > baseUrl.
- Loading branch information
Showing
1 changed file
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: "Build Test Lint" | ||
name: 'Build Test Lint' | ||
run-name: Build Test Lint of ${{ github.ref_name }} by @${{ github.actor }} | ||
on: | ||
push: | ||
|
@@ -24,6 +24,14 @@ jobs: | |
webTarget: web | ||
# TODO(alishaevn): figure out how to get the below passing in github actions | ||
# it may be different than our typical setups since we don't use docker locally | ||
cypress: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Cypress e2e | ||
uses: cypress-io/github-action@v6 | ||
with: | ||
# cypress: | ||
# runs-on: ubuntu-22.04 | ||
# steps: | ||
|
@@ -35,6 +43,12 @@ jobs: | |
# uses: cypress-io/github-action@v6 | ||
# with: | ||
# component: true | ||
start: yarn start | ||
wait-on: 'http://web:3000' | ||
- name: Cypress component | ||
uses: cypress-io/github-action@v6 | ||
with: | ||
component: true | ||
eslint: | ||
needs: build | ||
uses: scientist-softserv/actions/.github/workflows/[email protected] | ||
|