Skip to content

Commit

Permalink
ci: update workflows for nodejs projects (#525)
Browse files Browse the repository at this point in the history
  • Loading branch information
asyncapi-bot committed Jan 16, 2023
1 parent e7e85aa commit 072d17e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/if-nodejs-pr-testing.yml
Expand Up @@ -52,10 +52,10 @@ jobs:
npm install --loglevel verbose
- if: steps.packagejson.outputs.exists == 'true'
name: Test
run: npm test
run: npm test --if-present
- if: steps.packagejson.outputs.exists == 'true'
name: Run linter
run: npm run lint
run: npm run lint --if-present
- if: steps.packagejson.outputs.exists == 'true'
name: Run release assets generation to make sure PR does not break it
run: npm run generate:assets
run: npm run generate:assets --if-present

0 comments on commit 072d17e

Please sign in to comment.