chore(deps)(deps): bump @libp2p/identify from 3.0.36 to 4.0.7 #3860
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: Playwright tests | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| env: | |
| NODE_JS: "22" | |
| # Firefox in container fails due to $HOME not being owned by user running commands | |
| # more details https://github.com/microsoft/playwright/issues/6500 | |
| HOME: "/root" | |
| jobs: | |
| test: | |
| timeout-minutes: 60 | |
| runs-on: ubuntu-latest | |
| container: | |
| image: mcr.microsoft.com/playwright:v1.56.1-jammy | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ env.NODE_JS }} | |
| - uses: ./.github/actions/npm | |
| - name: Build entire monorepo | |
| run: npm run build | |
| - name: Run Playwright tests | |
| run: npm run test --workspace=@waku/browser-tests | |
| - uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: playwright-report | |
| path: playwright-report/ | |
| retention-days: 30 |