Skip to content

chore: upgrade to astro 3, add playwright #24

chore: upgrade to astro 3, add playwright

chore: upgrade to astro 3, add playwright #24

Workflow file for this run

name: Unit Tests
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test