Skip to content

build(deps): bump @astrojs/tailwind from 5.1.0 to 5.1.4 #9

build(deps): bump @astrojs/tailwind from 5.1.0 to 5.1.4

build(deps): bump @astrojs/tailwind from 5.1.0 to 5.1.4 #9

Workflow file for this run

---
name: Playwright Tests
"on":
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install -g pnpm && pnpm install
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
- name: Run Playwright tests
run: pnpm exec playwright test
- name: Upload artifact
uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30