Skip to content

Commit d0ef897

Browse files
committed
fix(ci): Go runner working-directory, TS runner --experimental-vm-modules
1 parent 0fb8d29 commit d0ef897

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/conformance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
with:
1616
go-version: '1.22'
1717
- name: Run Go conformance runner
18-
run: go run ./conformance/runner/go/main.go
19-
working-directory: ${{ github.workspace }}
18+
run: go run .
19+
working-directory: ${{ github.workspace }}/conformance/runner/go
2020

2121
ts-runner:
2222
runs-on: ubuntu-latest

conformance/runner/ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"type": "module",
55
"scripts": {
6-
"test": "jest --config jest.config.mjs"
6+
"test": "node --experimental-vm-modules node_modules/.bin/jest --config jest.config.mjs"
77
},
88
"devDependencies": {
99
"@bsv/sdk": "workspace:*",

0 commit comments

Comments
 (0)