chore(deps): bump @openally/result from 1.3.0 to 2.0.0 in the dependencies group #545
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: Sigyn Agent | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| paths: | |
| - "package-lock.json" | |
| - "src/agent/**" | |
| - ".github/workflows/agent.yml" | |
| - "!src/agent/**/*.md" | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [24.x] | |
| fail-fast: false | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2 | |
| with: | |
| egress-policy: audit | |
| - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Unit tests | |
| uses: Wandalen/wretry.action@e68c23e6309f2871ca8ae4763e7629b9c258e1ea # v3.8.0 | |
| with: | |
| command: npm install --ignore-scripts && npm run build && npm run test --workspace=src/agent | |
| attempt_limit: 3 | |
| - name: Install dependencies | |
| run: npm install --ignore-scripts | |
| - name: Build packages | |
| run: npm run build | |
| - name: Run e2e tests | |
| run: npm run test:e2e --workspace=src/agent |