Skip to content

Bump @joplin/turndown from 4.0.74 to 4.0.78 #91

Bump @joplin/turndown from 4.0.74 to 4.0.78

Bump @joplin/turndown from 4.0.74 to 4.0.78 #91

Workflow file for this run

name: _pull request
on: pull_request
jobs:
tests:
name: playwright tests
timeout-minutes: 25
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: actions/cache@v3
id: playwright-cache
with:
path: |
~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps firefox
if: steps.playwright-cache.outputs.cache-hit != 'true'
- name: Run Playwright tests
run: npx playwright test --project=firefox