Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,14 @@ jobs:
# checkout this is an improved security measure.
persist-credentials: false
submodules: true
- uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # tag=v3.5.0
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
with:
path: /.yarn/cache
key: v1-${{hashFiles('yarn.lock')}}
- run: yarn install --immutable
- run: yarn mocha -R spec
run_install: false
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- name: Setup Puppeteer
run: pnpm puppeteer browsers install chrome
- run: pnpm test -R spec
12 changes: 1 addition & 11 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,4 @@ node_modules

# Ignore npm/yarn debug log
npm-debug.log
yarn-error.log

# Yarn v2+. Zero installs disabled since we are not using PnP.
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
!.yarn/yarn.js
yarn-error.log
873 changes: 0 additions & 873 deletions .yarn/releases/yarn-3.4.1.cjs

This file was deleted.

2 changes: 0 additions & 2 deletions .yarnrc.yml

This file was deleted.

8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
"author": "Felix Gnass <fgnass@gmail.com>",
"description": "Server-side DOM implementation based on Mozilla's dom.js",
"main": "./lib",
"packageManager": "pnpm@10.31.0",
"engines": {
"npm": "Please use pnpm instead of NPM to install dependencies",
"yarn": "Please use pnpm instead of Yarn to install dependencies",
"pnpm": "10.31.0"
},
"repository": {
"type": "git",
"url": "https://github.com/angular/domino.git"
Expand All @@ -16,7 +22,7 @@
"devDependencies": {
"jquery": "^3.5.1",
"mocha": "^6.2.3",
"puppeteer": "^21.3.5",
"puppeteer": "^24.39.0",
"should": "^13.2.3"
}
}
Loading
Loading