Skip to content

chore(deps): update actions/checkout digest to 93cb6ef #1724

chore(deps): update actions/checkout digest to 93cb6ef

chore(deps): update actions/checkout digest to 93cb6ef #1724

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
container:
image: ghcr.io/serenity-js/playwright:v1.57.0-noble
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
- uses: actions/setup-node@v6
with:
node-version: '24.11.1'
- name: Setup Node Modules
uses: bahmutov/npm-install@v1
- name: Run Playwright tests
run: npm test
- uses: actions/upload-artifact@v5
if: always()
with:
name: serenity-report
path: target/site/serenity
retention-days: 30
- name: GitHub Pages
if: github.ref == 'refs/heads/main'
uses: JamesIves/github-pages-deploy-action@v4.7.4
with:
branch: gh-pages
folder: target/site
clean: true