Skip to content

Commit 95d4139

Browse files
committed
fix CI test running using correct ENV variables
1 parent 3f5bf4b commit 95d4139

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,6 @@ jobs:
6363
- name: Test
6464
run: >
6565
TEST262_NODE_VERSION=${{ matrix.TEST262_NODE_VERSION }}
66+
TEST262_MIN=${{ matrix.TEST262_MIN }}
6667
TEST262_ESM=${{ matrix.TEST262_ESM }}
67-
cd packages/temporal-polyfill && pnpm run test262
68+
pnpm run test262

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"ci": "pnpm run clean && pnpm run lint && pnpm run build && pnpm run test",
2222
"lint": "pnpm -r run lint",
2323
"build": "pnpm -r run build",
24-
"test": "pnpm -r --stream --filter=!@js-temporal/temporal-test262-runner run test",
24+
"test": "pnpm -r --stream run test",
25+
"test262": "pnpm -r --stream run test262",
2526
"clean": "pnpm -r run clean"
2627
},
2728
"devDependencies": {

0 commit comments

Comments
 (0)