-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Github actions cypress with IP intead localhost
- Loading branch information
Showing
1 changed file
with
16 additions
and
16 deletions.
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,23 +1,23 @@ | ||
name: Cypress Tests | ||
# name: Cypress Tests | ||
|
||
on: [push] | ||
# on: [push] | ||
|
||
jobs: | ||
cypress-run: | ||
runs-on: ubuntu-latest | ||
# jobs: | ||
# cypress-run: | ||
# runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v2 | ||
# steps: | ||
# - name: Checkout Repository | ||
# uses: actions/checkout@v2 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: "20" # Especificar a versão do Node.js | ||
# - name: Setup Node.js | ||
# uses: actions/setup-node@v2 | ||
# with: | ||
# node-version: "20" # Especificar a versão do Node.js | ||
|
||
- name: Install Dependencies | ||
run: npm install | ||
# - name: Install Dependencies | ||
# run: npm install | ||
|
||
- name: Run Cypress Tests | ||
run: npx cypress run --record --key 67fd9c51-6b49-446d-b8b8-d24b5d798313 | ||
# - name: Run Cypress Tests | ||
# run: npx cypress run --record --key 67fd9c51-6b49-446d-b8b8-d24b5d798313 | ||
|