Update workflows: bump actions/checkout to v5 and `actions/setup-no…
#1008
Workflow file for this run
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: Chromium, Firefox | |
| on: [push, pull_request] | |
| # Declare default permissions as read only. | |
| permissions: read-all | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: bin/setup-rabbit.sh | |
| - name: Use Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '22.x' | |
| - run: npm ci | |
| - run: npm run lint | |
| - run: npm run build | |
| - run: npx playwright install --with-deps chromium firefox | |
| - run: npx playwright test --project=chromium --project=firefox | |
| - run: npm pack | |
| - run: bin/rx-stomp.sh |