Skip to content

Commit

Permalink
EXUI-705: Print working dir to try and identify why script can't be f…
Browse files Browse the repository at this point in the history
…ound
  • Loading branch information
Tom Elliott authored and Tom Elliott committed Aug 17, 2023
1 parent 713e6d6 commit 35b3730
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dependency-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
node-version-file: ".nvmrc"
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build
- name: Print current working directory
run: pwd
- name: Run automated update of known-issue suppression
run: yarn audit
run: yarn update-audit-known-issues
- name: Commit
uses: stefanzweifel/git-auto-commit-action@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"node": ">=12.13.0"
},
"scripts": {
"audit": "yarn npm audit --recursive --environment production --json > yarn-audit-known-issues",
"build": "yarn build:prod && yarn build:node",
"build:docker": "docker build -t xui .",
"build:ng": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --prod build",
Expand Down Expand Up @@ -70,7 +69,8 @@
"test:codeceptE2EDebug": "TEST_TYPE=e2e npx codeceptjs run --plugins retryFailedStep --config=./test_codecept/codeceptCommon/codecept.conf.ts --features --grep @codecept_test --reporter mochawesome ",
"test:codeceptE2E": "TEST_TYPE=e2e npx codeceptjs run-workers --suites 5 --plugins retryFailedStep --config=./test_codecept/codeceptCommon/codecept.conf.ts --features --grep @codecept_enabled --reporter mochawesome ",
"test:xuiIntegrationDebug": "NODE_CONFIG_ENV=mock TEST_TYPE=ngIntegration TEST_URL=http://localhost:3000 npx codeceptjs run --config=./test_codecept/codeceptCommon/codecept.conf.ts --features --grep @codecept_test --reporter mochawesome ",
"test:xuiIntegration": "yarn build && node ./test_codecept/backendMock/configCopy.js && NODE_CONFIG_ENV=mock TEST_TYPE=ngIntegration PARALLEL=true npx codeceptjs run-workers --suites 5 --config=./test_codecept/codeceptCommon/codecept.conf.ts --features --grep @codecept_enabled --reporter mochawesome "
"test:xuiIntegration": "yarn build && node ./test_codecept/backendMock/configCopy.js && NODE_CONFIG_ENV=mock TEST_TYPE=ngIntegration PARALLEL=true npx codeceptjs run-workers --suites 5 --config=./test_codecept/codeceptCommon/codecept.conf.ts --features --grep @codecept_enabled --reporter mochawesome ",
"update-audit-known-issues": "yarn npm audit --recursive --environment production --json > yarn-audit-known-issues"
},
"private": true,
"dependencies": {
Expand Down

0 comments on commit 35b3730

Please sign in to comment.