Bumped NodeJS to 18 >= x <= 22 + increased open pull request limit for dependabot #176
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: Tests | |
| on: | |
| pull_request: | |
| concurrency: | |
| group: "test-${{ github.event.pull_request.head.ref }}" | |
| cancel-in-progress: false | |
| jobs: | |
| test: | |
| name: Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: yarn install | |
| - name: Run Quasar E2E tests | |
| run: yarn test:e2e:ci | |
| - name: Upload Test Artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-artifacts | |
| if-no-files-found: ignore | |
| retention-days: 1 | |
| compression-level: 9 | |
| path: | | |
| test/cypress/screenshots/ | |
| test/cypress/videos/ | |
| !test/cypress/screenshots/.gitignore | |
| !test/cypress/videos/.gitignore |