add dependencies

This commit is contained in:
Alex Holliday
2025-06-01 11:42:04 -07:00
parent 2e7b67d991
commit 59f1ce7d31

View File

@@ -40,15 +40,17 @@ jobs:
working-directory: server
run: npm run format-check
close-pr-if-needed:
needs: [format-client, format-server]
runs-on: ubuntu-latest
needs: [format-client, format-server]
if: |
needs.format-client.result == 'failure' ||
needs.format-server.result == 'failure'
always() && (
needs.format-client.result == 'failure' ||
needs.format-server.result == 'failure'
)
steps:
- name: Close PR
uses: peter-evans/close-pull@v3
with:
comment: |
PR closed automatically because formatting failed in one or more modules.
Please run `npm run format` in both `client/` and `server/` before pushing again.
Formatting check failed — PR auto-closed.
Please run `npm run format` and push again.