Skip to content

Add license to package.json #9

Add license to package.json

Add license to package.json #9

Workflow file for this run

name: Test components
on:
push:
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies from lockfile
run: npm ci
- name: Run linter (eslint)
run: npm run lint
- name: Run Svelte and Typescript checks
run: npm run check
- name: Install Playwright browsers for integration tests
run: npx playwright install --with-deps
- name: Run all tests
run: npm test