Skip to content

Commit 2fb57f3

Browse files
authored
Merge pull request #277 from msgpack/gfx/test_node_with_strip_types
add test:node_with_strip_types
2 parents 3d60fcf + dd1a8db commit 2fb57f3

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,18 @@ jobs:
8181
- run: bun install
8282
- run: npm run test:bun
8383

84+
node_with_strip_types:
85+
runs-on: ubuntu-latest
86+
steps:
87+
- uses: actions/checkout@v4
88+
- name: Setup Node.js
89+
uses: actions/setup-node@v4
90+
with:
91+
cache: npm
92+
node-version: '24'
93+
- run: npm ci
94+
- run: npm run test:node_with_strip_types
95+
8496
timeline:
8597
runs-on: ubuntu-latest
8698
permissions:

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"test": "mocha 'test/**/*.test.ts'",
1919
"test:dist": "npm run lint && npm run test && npm run test:deno",
2020
"test:cover": "npm run cover:clean && npx nyc --no-clean npm run 'test' && npm run cover:report",
21+
"test:node_with_strip_types": "node --experimental-strip-types test/deno_test.ts",
2122
"test:deno": "deno test --allow-read test/deno_*.ts",
2223
"test:bun": "bun test test/bun.spec.ts",
2324
"test:fuzz": "npm exec --yes -- jsfuzz@git+https://gitlab.com/gitlab-org/security-products/analyzers/fuzzers/jsfuzz.git#39e6cf16613a0e30c7a7953f62e64292dbd5d3f3 --fuzzTime 60 --no-versifier test/decode.jsfuzz.js corpus",

0 commit comments

Comments
 (0)