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
7 changes: 6 additions & 1 deletion .github/workflows/code-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,18 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8

- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'

- name: Install Dependencies
run: npm install pnpm -g && pnpm install
run: pnpm install

- name: Build
run: pnpm build
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,18 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8

- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'

- name: Install Dependencies
run: npm install pnpm -g && pnpm install
run: pnpm install

- name: Build
run: pnpm build
Expand Down
44 changes: 0 additions & 44 deletions .github/workflows/tests-nodejs-20.yaml

This file was deleted.

44 changes: 0 additions & 44 deletions .github/workflows/tests-nodejs-22.yaml

This file was deleted.

14 changes: 9 additions & 5 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,25 @@ jobs:

strategy:
matrix:
node-version: ['24']
node-version: ['22', '24', '26']

steps:
- uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'

- name: Install Dependencies
run: npm install pnpm -g && pnpm install
run: pnpm install

- name: Build
- name: Build
run: pnpm build

- name: Testing
- name: Testing
run: pnpm test

11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "3.1.0",
"description": "Hyphen SDK for Node.js",
"type": "module",
"packageManager": "pnpm@11.6.0",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"exports": {
Expand Down Expand Up @@ -39,23 +40,23 @@
"node": ">=20.12.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@biomejs/biome": "^2.4.16",
"@faker-js/faker": "^10.4.0",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"@vitest/coverage-v8": "^4.1.8",
"rimraf": "^6.1.3",
"tsd": "^0.33.0",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
"vitest": "^4.1.8"
},
"files": [
"dist",
"LICENSE"
],
"dependencies": {
"@cacheable/net": "^2.0.7",
"cacheable": "^2.3.4",
"@cacheable/net": "^2.0.8",
"cacheable": "^2.3.5",
"hookified": "^2.1.1",
"pino": "^10.3.1"
}
Expand Down
Loading
Loading