Skip to content

Fix bug where colon is replaced by "%3A" #196 #23

Fix bug where colon is replaced by "%3A" #196

Fix bug where colon is replaced by "%3A" #196 #23

Workflow file for this run

name: Playwright tests
on:
pull_request:
branches: [ staging, main, master ]
types:
- opened
- synchronize
paths:
- '.github/workflows/playwright.yml'
- 'src/**'
- 'tests/playwright/**'
- 'package.json'
schedule:
- cron: '0 6 1,11,21 * *'
workflow_dispatch:
jobs:
test:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Publish extension to dist folder
run: |
npm ci
npm i grunt -g
grunt playwright
- name: Install test dependencies
run: npm ci
working-directory: tests/playwright
- name: Install playwright browser (chromium)
run: npx playwright install --with-deps chromium
working-directory: tests/playwright
- name: Run playwright tests
run: npx playwright test
working-directory: tests/playwright
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: tests/playwright/playwright-report/
retention-days: 30