build(deps-dev): bump qs from 6.14.1 to 6.14.2 #186
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: Continuous Integration | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v4.2.2 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4.1.0 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: 'npm' | |
| - name: Install Node dependencies | |
| run: npm ci | |
| - name: Create test environment | |
| run: docker compose up -d | |
| - name: Wait until test environment is up | |
| run: npx wait-on http-get://localhost:8080/Install | |
| - name: Cypress run | |
| uses: cypress-io/github-action@v6.7.8 | |
| with: | |
| record: true | |
| env: | |
| # pass the Dashboard record key as an environment variable | |
| CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |