Skip to content

Commit 1e2d128

Browse files
authored
chore: merge pull request #12 from addon-stack/develop
ci: remove redundant `NODE_OPTIONS` for tests
2 parents 91abaa0 + 63252fa commit 1e2d128

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ jobs:
3939
name: Build, Lint, Test ${{ needs.compute-matrix.outputs.name_suffix }}
4040
needs: compute-matrix
4141
runs-on: ${{ matrix.os }}
42+
env:
43+
NODE_OPTIONS: --experimental-vm-modules
4244
permissions:
4345
contents: read
4446
strategy:

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
"dev": "tsup --watch",
5151
"lint": "biome check .",
5252
"fix": "biome check --write --unsafe .",
53-
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" jest",
54-
"test:ci": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --ci --passWithNoTests --coverage",
55-
"test:related": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --bail --passWithNoTests",
53+
"test": "jest",
54+
"test:ci": "jest --ci --passWithNoTests --coverage",
55+
"test:related": "jest --bail --passWithNoTests",
5656
"typecheck": "tsc -p tsconfig.json --noEmit",
5757
"release": "release-it",
5858
"release:preview": "release-it --no-github.release --no-npm.publish --no-git.tag --ci"

0 commit comments

Comments
 (0)