Skip to content

test pr with new progress bar div #7

test pr with new progress bar div

test pr with new progress bar div #7

Workflow file for this run

# Sample workflow for building and deploying an Astro site to GitHub Pages
#
# To get started with Astro see: https://docs.astro.build/en/getting-started/
#
name: Run Checks
on:
workflow_dispatch:
pull_request:
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: ./example/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