Skip to content

Version Packages (#196) #222

Version Packages (#196)

Version Packages (#196) #222

Workflow file for this run

name: Run Tests
on:
workflow_dispatch:
push:
branches: [ main ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "18"
cache: npm
cache-dependency-path: ./package-lock.json
- name: Cache .astro
uses: actions/cache@v4
with:
path: ./node_modules
key: astro-cache-${{ github.run_id }}
restore-keys: astro-cache
- name: Install dependencies
run: npm ci
- name: Prepare tests
run: npx playwright install --with-deps
- name: Run tests
run: npm test