Skip to content

Commit

Permalink
feat(workflows): rename debug step in pull_request.yml for clarity
Browse files Browse the repository at this point in the history
feat(package.json): add new development scripts for easier local setup and management
  • Loading branch information
codemile committed Aug 20, 2024
1 parent db637b0 commit a8f62e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
needs: [ build ]
if: ${{ always() }}
steps:
- name: "Debug each needs.build.result"
- name: "Debug needs.build.result"
run: echo "needs.build.result ${{ needs.build.result }}"

- name: "✅ Success"
Expand Down
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
"homepage": "https://aigraphr.com/",
"private": false,
"scripts": {
"dev": "bash -c './dev.sh start'",
"dev:help": "bash -c './dev.sh --help'",
"dev:compile": "bash -c './dev.sh compile'",
"dev:init": "bash -c './dev.sh init'",
"build": "nx run-many -t build",
"lint": "nx run-many -t lint",
"sort": "npx --yes sort-package-json",
Expand Down

0 comments on commit a8f62e1

Please sign in to comment.