-
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.
Fix/run test develop 2024 06 15 (#448)
* fix: fixed code * fix: fixed update code
- Loading branch information
1 parent
cd63e43
commit 2a55757
Showing
2 changed files
with
85 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Run Test E2E Required Input | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version-tag: | ||
description: 'Version tag or branch to test' | ||
required: true | ||
default: 'master' | ||
|
||
jobs: | ||
test-e2e: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository Test E2E | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: NitichaiSawangsai/cypress-ex1 | ||
ref: ${{ github.event.inputs.version-tag }} | ||
token: ${{ secrets.REPO_CYPRESS_EX1_ACCESS_TOKEN }} | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Cypress run | ||
uses: cypress-io/github-action@v5 | ||
|
||
- uses: actions/upload-artifact@v3 | ||
if: failure() | ||
with: | ||
name: cypress-screenshots | ||
path: cypress/screenshots | ||
|
||
- uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: cypress-videos | ||
path: cypress/videos |
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Run Test E2E | ||
on: | ||
# push: | ||
# branches: | ||
# - release | ||
pull_request: | ||
branches: | ||
- release | ||
jobs: | ||
test-e2e: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# action clones the repository into this environment, | ||
# making your code available for the workflow steps that follow. | ||
- name: Checkout Repository Test E2E | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: NitichaiSawangsai/cypress-ex1 # เปลี่ยนเป็น repository ของคุณ | ||
ref: master # ตรวจสอบจาก branch release | ||
token: ${{ github.token }} # ใช้ Personal Access Token ที่มีสิทธิ์ในการอ่าน Repository REPO_CYPRESS_EX1_ACCESS_TOKEN | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
# Install NPM dependencies, cache them correctly | ||
# and run all Cypress tests | ||
# https://github.com/cypress-io/github-action | ||
- name: Cypress run | ||
uses: cypress-io/github-action@v5 | ||
# after the test run completes | ||
# store videos and any screenshots | ||
# NOTE: screenshots will be generated only if E2E test failed | ||
# thus we store screenshots only on failures | ||
# Alternative: create and commit an empty cypress/screenshots folder | ||
# to always have something to upload | ||
- uses: actions/upload-artifact@v3 | ||
if: failure() | ||
with: | ||
name: cypress-screenshots | ||
path: cypress/screenshots | ||
# Test run video was always captured, so this action uses "always()" condition | ||
- uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: cypress-videos | ||
path: cypress/videos | ||
|
||
|