Skip to content

Commit

Permalink
install -g mocha
Browse files Browse the repository at this point in the history
  • Loading branch information
zMynxx committed Aug 18, 2023
1 parent 725cc74 commit cf46a19
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/actions/nodejs/npm-test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ inputs:

outputs:
test_result:
description: 'My output description'
description: 'Tests result'
value: ${{ steps.test.outputs.test_result }}

runs:
Expand All @@ -44,7 +44,9 @@ runs:
# if: ${{ steps.cache-npm.outputs.cache-hit != 'true' }}
shell: bash
working-directory: ${{ inputs.package_json_path }}
run: npm install --include=dev ${{ inputs.force_install_dependencies == true && '--force' || '' }}
run: |
npm install -g mocha
npm install --include=dev ${{ inputs.force_install_dependencies == true && '--force' || '' }}
- name: Run tests
id: test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
SLACK_WEBHOOK_PROD:
description: "Github secret containig slack webhook for prod channel"
required: true
push:
# push:

jobs:
continuous-integration:
Expand Down

0 comments on commit cf46a19

Please sign in to comment.