Skip to content

WXT migration

WXT migration #40

Workflow file for this run

name: CSS Selectors
on:
pull_request:
branches: [main]
types: [opened, reopened, synchronize, ready_for_review]
push:
branches: [main]
jobs:
css-selectors:
runs-on: ubuntu-22.04
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Setup node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Install Playwright Browsers
run: pnpm playwright install --with-deps chromium
- name: Run Playwright tests
run: pnpm test