Skip to content

chore(deps): bump node-forge from 1.3.1 to 1.3.3 (#1944) #38

chore(deps): bump node-forge from 1.3.1 to 1.3.3 (#1944)

chore(deps): bump node-forge from 1.3.1 to 1.3.3 (#1944) #38

Workflow file for this run

name: Build and test
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
pull-requests: write
jobs:
test:
name: Playwright
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.50.1-noble
options: --user 1001
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Build site
run: npm run build
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30