Skip to content

Выполнен npm audit fix #458

Выполнен npm audit fix

Выполнен npm audit fix #458

Workflow file for this run

name: E2E tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.40.1-jammy
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install main pkg deps
run: |
npm ci
- name: Install docs pkg deps
run: |
npm ci
working-directory: docs
- name: Run tests
run: npx playwright test
env:
HOME: /root
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30