chore(deps-dev): bump fast-uri from 3.1.0 to 3.1.7 #1173
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 | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| pull_request: | |
| branches: | |
| - '**' | |
| env: | |
| BEE_API_URL: 'http://127.0.0.1:1633' | |
| jobs: | |
| nodejs: | |
| 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 @fairdatasociety/fdp-play | |
| - name: Start fdp-play environment | |
| run: fdp-play start --detach --fresh --bee-version d0aa8b9-commit | |
| - name: Run unit and integration tests for node | |
| run: npm run test -- --detectOpenHandles |