Skip to content

Commit

Permalink
Merge branch 'main' into superpipe
Browse files Browse the repository at this point in the history
  • Loading branch information
antongolub authored Oct 29, 2024
2 parents 43f4bd0 + b9f78c3 commit a763418
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 14 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,16 @@ jobs:
smoke-deno:
runs-on: ubuntu-latest
needs: build
strategy:
matrix:
deno-version: [v1.x, v2.x]
steps:
- uses: actions/checkout@v4
- name: Setup Deno
uses: denoland/setup-deno@v1
uses: denoland/setup-deno@v2
with:
deno-version: v1.x
deno-version: ${{ matrix.deno-version }}
- run: deno install npm:types/node npm:types/fs-extra
- uses: actions/download-artifact@v4
with:
name: build
Expand All @@ -152,7 +156,7 @@ jobs:
needs: build
strategy:
matrix:
node-version: [12, 14, 16, 18, 20, 22, 22-nightly]
node-version: [12, 14, 16, 18, 20, 22, 22-nightly, 23]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -166,6 +170,9 @@ jobs:
run: npm run test:smoke:cjs
- name: mjs smoke test
run: npm run test:smoke:mjs
- name: strip-types
if: matrix.node-version >= 22
run: npm run test:smoke:strip-types

smoke-ts:
runs-on: ubuntu-latest
Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
"test:license": "node ./test/extra.test.js",
"test:audit": "npm audit fix",
"test:size": "size-limit",
"test:smoke:strip-types": "node --experimental-strip-types test/smoke/ts.test.ts",
"test:smoke:tsx": "tsx test/smoke/ts.test.ts",
"test:smoke:tsc": "cd test/smoke && mkdir -p node_modules && ln -s ../../../ ./node_modules/zx; ../../node_modules/typescript/bin/tsc -v && ../../node_modules/typescript/bin/tsc --esModuleInterop --module node16 --rootDir . --outdir ./temp ts.test.ts && node ./temp/ts.test.js",
"test:smoke:ts-node": "node --loader ts-node/esm test/smoke/ts.test.ts",
Expand All @@ -97,7 +98,7 @@
"@types/node": ">=20.11.30",
"@types/which": "^3.0.4",
"@webpod/ingrid": "^0.0.0-beta.3",
"@webpod/ps": "^0.0.0-beta.8",
"@webpod/ps": "^0.0.0-beta.10",
"c8": "^10.1.2",
"chalk": "^5.3.0",
"create-require": "^1.1.1",
Expand Down Expand Up @@ -125,7 +126,7 @@
"typescript": "^5.6.2",
"which": "^4.0.0",
"yaml": "^2.5.1",
"zurk": "^0.4.4"
"zurk": "^0.6.0"
},
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com"
Expand Down

0 comments on commit a763418

Please sign in to comment.