httpd: Allow conditional access to private repos #899
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: check-http-client-unit-test | |
| on: | |
| push: | |
| workflow_dispatch: | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| jobs: | |
| check-http-client-unit-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: ".nvmrc" | |
| - run: npm ci | |
| - name: Install Radicle binaries | |
| run: | | |
| mkdir -p tests/artifacts; | |
| ./scripts/install-binaries; | |
| - run: | | |
| npm run test:http-client:unit |