fix: updated Fileservice.cc to handle mAdminKeys as value type #63
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "ZXC: Test Bot Scripts" | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| paths: | |
| - ".github/scripts/**" | |
| - ".github/workflows/zxc-test-bot-scripts.yaml" | |
| workflow_dispatch: | |
| defaults: | |
| run: | |
| shell: bash | |
| concurrency: | |
| group: test-bot-scripts-${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| test-bot-scripts: | |
| name: Test Bot Scripts | |
| runs-on: hiero-client-sdk-linux-large | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1 | |
| with: | |
| egress-policy: audit | |
| - name: Checkout Repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 | |
| with: | |
| node-version: "20" | |
| - name: Run Check Helpers Tests | |
| run: node .github/scripts/tests/test-checks.js | |
| - name: Run Comment Helpers Tests | |
| run: node .github/scripts/tests/test-comments.js | |
| - name: Run API Helpers Tests | |
| run: node .github/scripts/tests/test-api.js | |
| - name: Run On-PR-Open Bot Tests | |
| run: node .github/scripts/tests/test-on-pr-open-bot.js | |
| - name: Run On-PR-Update Bot Tests | |
| run: node .github/scripts/tests/test-on-pr-update-bot.js | |
| - name: Run On-Comment (Assign) Bot Tests | |
| run: node .github/scripts/tests/test-assign-bot.js |