diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b58c467..1402527 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,7 +39,7 @@ jobs: node-version: 18 - run: yarn install --frozen-lockfile - run: yarn ci:nvda-install-dir - - run: Get-ChildItem %userprofile% + - run: Get-ChildItem $env:USERPROFILE\nvda - uses: actions/upload-artifact@v3 if: always() with: diff --git a/package.json b/package.json index bd2c062..5ee442d 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ "scripts": { "build": "yarn clean && yarn compile", "ci": "yarn clean && yarn lint && yarn build && yarn resolutionFix && yarn start --ci --record", - "ci:nvda-install-dir": "yarn clean && yarn lint && yarn build && yarn resolutionFix && yarn start --ci --record --nvda-install-dir %userprofile%", + "ci:nvda-install-dir": "yarn clean && yarn lint && yarn build && yarn resolutionFix && yarn start --ci --record --nvda-install-dir %userprofile%\\nvda", "clean": "rimraf lib", "compile": "tsc", "dev": "ts-node ./src/index.ts",