Skip to content

Bump astro from 4.15.5 to 4.15.7 #241

Bump astro from 4.15.5 to 4.15.7

Bump astro from 4.15.5 to 4.15.7 #241

Workflow file for this run

name: Run Checks
on:
workflow_dispatch:
pull_request:
branches: [ main ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- '18.x'
- '20.x'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Prepare tests
run: npx playwright install --with-deps
- name: Run tests
run: npm test