Skip to content

Commit

Permalink
Switched from npm to pnpm and updated Github actions accordingly. Upd…
Browse files Browse the repository at this point in the history
…ated dependencies.
  • Loading branch information
kkomelin committed Apr 30, 2024
1 parent 38d8fc4 commit 41daa27
Show file tree
Hide file tree
Showing 5 changed files with 2,921 additions and 2,472 deletions.
4 changes: 0 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,3 @@ updates:
schedule:
interval: daily
open-pull-requests-limit: 10
ignore:
- dependency-name: y18n
versions:
- 4.0.1
10 changes: 7 additions & 3 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,14 @@ jobs:
with:
fetch-depth: 0
ref: master
- uses: pnpm/action-setup@v3
with:
version: 9
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn test
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm test
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@
"types": "index.d.ts",
"dependencies": {
"@types/dompurify": "^3.0.5",
"dompurify": "^3.1.1",
"dompurify": "^3.1.2",
"jsdom": "^24.0.0"
},
"devDependencies": {
"jest": "^29.7.0",
"terser": "^5.30.3"
"terser": "^5.31.0"
},
"engines": {
"node": ">=18"
Expand Down
Loading

0 comments on commit 41daa27

Please sign in to comment.