fix: disable ANSI colors in history list when stdout is not a TTY #297
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: Tests (Bee RC) | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| pull_request: | |
| branches: | |
| - '**' | |
| env: | |
| BEE_API_URL: 'http://localhost:1633' | |
| BEE_PEER_API_URL: 'http://localhost:11633' | |
| jobs: | |
| tests-bee-rc: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24.x | |
| - name: Install local dependencies | |
| run: npm ci | |
| - name: Install global dependencies | |
| run: npm install --global bee-dev @ethersphere/bee-factory @ethersphere/swarm-cli npxie | |
| - name: Run bee-dev | |
| run: bee-dev --port 16337 & | |
| - name: Run bee-dev with --no-swap | |
| run: bee-dev --port 16338 --no-swap & | |
| - name: Start bee-factory | |
| run: bee-factory start --tag master | |
| - name: Print swarm-cli status | |
| continue-on-error: true | |
| run: swarm-cli status | |
| - name: Tests | |
| run: npm run test |