Skip to content

build(deps-dev): bump happy-dom from 15.7.3 to 15.10.1 #130

build(deps-dev): bump happy-dom from 15.7.3 to 15.10.1

build(deps-dev): bump happy-dom from 15.7.3 to 15.10.1 #130

Workflow file for this run

name: Validate
on:
pull_request:
branches:
- master
env:
HUSKY: 0
permissions:
contents: read
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- name: Install Dependencies
run: npm ci --legacy-peer-deps
- name: Run Linter
run: npm run lint
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- name: Install Dependencies
run: npm ci --legacy-peer-deps
- name: Run Linter
run: npm run test
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- name: Install Dependencies
run: npm ci --legacy-peer-deps
- name: Build the Library
run: npm run build