Fix: revert all the trailing slash changes #211
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: Run tests | |
| on: | |
| pull_request: | |
| branches: | |
| - "main" | |
| - "**/main" | |
| - "!release-please*" | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| jobs: | |
| run-tests: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| node: [20] | |
| steps: | |
| - name: Checkout 🛎 | |
| uses: actions/checkout@v4 | |
| # necessary for git diff of changed files in the PR | |
| with: | |
| fetch-depth: 2 | |
| - name: Setup node env 🏗 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| check-latest: true | |
| - name: Cache node_modules 📦 | |
| uses: actions/[email protected] | |
| with: | |
| path: ~/.npm | |
| key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node- | |
| - name: Install dependencies 👨🏻💻 | |
| run: npm ci --prefer-offline --no-audit | |
| - name: Start server 💻 | |
| run: npm run test:serve & | |
| env: | |
| CI: true | |
| GITCLERK_GITHUB_REPO: octocat/Hello-World | |
| GITCLERK_GITHUB_TOKEN: dummy-token | |
| - name: Wait for server to be ready 💻 | |
| run: npx wait-on http://localhost:3000 | |
| - name: Run Cypress tests 👀 | |
| run: npm run test:ga | |
| - name: Upload failed test screenshots 📷 | |
| uses: actions/upload-artifact@v4 | |
| if: failure() | |
| with: | |
| name: cypress-screenshots | |
| path: cypress/screenshots |