Update cypress.config.js #81
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
name: CI/cd update test code 1213 | |
# on: | |
# push: | |
# branches: | |
# - "*" | |
# pull_request: | |
# branches: | |
# - "*" | |
# jobs: | |
# cypress-run: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout code | |
# uses: actions/checkout@v2 | |
# - name: Setup Node.js | |
# uses: actions/setup-node@v2 | |
# with: | |
# node-version: "14" | |
# - name: Install dependencies | |
# run: | | |
# npm install | |
# npx cypress install | |
# - name: Run Cypress tests | |
# run: npx cypress run | |
# - name: Upload Cypress test results | |
# uses: actions/upload-artifact@v2 | |
# with: | |
# name: cypress-test-results | |
# path: cypress/reports | |
# - name: Upload Cypress screenshots | |
# uses: actions/upload-artifact@v2 | |
# with: | |
# name: cypress-screenshots | |
# path: cypress/screenshots | |
# - name: Upload Cypress videos | |
# uses: actions/upload-artifact@v2 | |
# with: | |
# name: cypress-videos | |
# path: cypress/videos |