Skip to content

build: bump happy-dom from 12.10.3 to 13.1.4 in /client #67

build: bump happy-dom from 12.10.3 to 13.1.4 in /client

build: bump happy-dom from 12.10.3 to 13.1.4 in /client #67

Workflow file for this run

name: 'TS Lint, Test, and Format'
on:
pull_request:
workflow_dispatch:
jobs:
lint-test-format:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./client
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/setup-node@v4
with:
node-version: 'latest'
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- run: npm ci
- run: npm run lint:fix
- run: npm run tsc
- run: npm run test
- run: npm run fmt