Skip to content

bumps

bumps #141

Workflow file for this run

name: Run Tests
on:
workflow_dispatch:
push:
branches: [ main ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
env:
npm_config_legacy_peer_deps: "true"
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: "24"
cache: npm
cache-dependency-path: ./package-lock.json
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
# - name: Prepare tests
# run: npx playwright install --with-deps
#
# - name: Run tests
# run: npm test