Skip to content

Bump astro from 4.13.1 to 4.15.1 #274

Bump astro from 4.13.1 to 4.15.1

Bump astro from 4.13.1 to 4.15.1 #274

Workflow file for this run

name: Tests
on:
push:
paths-ignore:
- 'playground/**'
- 'docs/**'
jobs:
test:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- uses: pnpm/action-setup@v3
with:
run_install: true
- name: Install Browsers
run: pnpm exec playwright install --with-deps
- name: Build Package
run: pnpm package:build
- name: Run Unit Tests
run: pnpm test:unit
- name: Run e2e Tests
run: pnpm test:e2e