Skip to content

(doc) Add Chocolatey Product Releases #511

(doc) Add Chocolatey Product Releases

(doc) Add Chocolatey Product Releases #511

Workflow file for this run

name: Playwright Tests
on:
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: Checkout repository using git
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version-file: 'package.json'
- name: Build site
run: yarn build
- name: Run Playwright tests
run: yarn playwright
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 14