Fix hardcoded test #3962
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: 🧪 Unit tests | |
| on: | |
| push: {} | |
| workflow_call: {} | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: [16.x, 18.x, 20.x, 22.x, 24.x, 25.x] | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: "npm" | |
| cache-dependency-path: "**/package-lock.json" | |
| - name: Setup Aikido safe-chain | |
| run: | | |
| npm i -g @aikidosec/safe-chain@1.0.24 | |
| safe-chain setup-ci | |
| - name: Add local.aikido.io to /etc/hosts | |
| run: | | |
| sudo echo "127.0.0.1 local.aikido.io" | sudo tee -a /etc/hosts | |
| - run: npm run install-lib-only | |
| - name: Start containers | |
| run: npm run containers | |
| - run: npm run build | |
| - run: npm run test:ci | |
| env: | |
| GOOGLE_GENERATIVE_AI_API_KEY: ${{ secrets.GOOGLE_GENERATIVE_AI_API_KEY }} | |
| - name: "Upload coverage" | |
| uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # v5 | |
| with: | |
| files: ./library/.tap/report/lcov.info | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| slug: AikidoSec/firewall-node |