Skip to content

chore(deps): update jamesives/github-pages-deploy-action action to v4.6.7 #1302

chore(deps): update jamesives/github-pages-deploy-action action to v4.6.7

chore(deps): update jamesives/github-pages-deploy-action action to v4.6.7 #1302

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
types: [ opened, synchronize ]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Setup Node Modules
uses: bahmutov/npm-install@v1
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npm test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report
retention-days: 30
- uses: actions/upload-artifact@v4
if: always()
with:
name: serenity-report
path: target/site/serenity
retention-days: 30
- name: Move Playwright reports
run: mv playwright-report target/site/playwright
- name: GitHub Pages
if: github.ref == 'refs/heads/main'
uses: JamesIves/[email protected]
with:
BRANCH: gh-pages
FOLDER: target/site
CLEAN: true