build(deps): bump qs from 6.14.0 to 6.14.1 #511
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: "CI" | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| ci: | |
| needs: [test] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: true | |
| test: | |
| name: yarn ${{ matrix.yarncmd }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| yarncmd: ["test"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Configure | |
| run: | | |
| git config --global user.email uirouter@github.actions | |
| git config --global user.name uirouter_github_actions | |
| - name: Install Dependencies | |
| run: yarn install --pure-lockfile | |
| - name: Install Playwright Browsers | |
| run: npx playwright install chromium | |
| - name: Check Peer Dependencies | |
| run: npx check-peer-dependencies | |
| - name: Run Tests | |
| run: yarn ${{ matrix.yarncmd }} | |
| - name: Upload Playwright Report | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: playwright-report | |
| path: playwright-report/ | |
| retention-days: 30 |