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: Cypress CI/CD With Github Page Publish | |
on: | |
push: | |
branches: | |
- "master" | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Cypress run | |
uses: cypress-io/github-action@v4 | |
with: | |
command: npm run cy:test | |
# - name: Copy test execution videos and screenshots | |
# run: | | |
# mkdir public | |
# cp -r public/videos | |
# cp -r public/screenshots | |
# - name: Merge test reports | |
# run: npm run combine-reports | |
# - name: Generate HTML report | |
# run: npm run generate-report | |
- name: Deploy report page to GitHub Page | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_branch: gh-pages |