Bump next from 15.5.2 to 15.5.7 in /apps/next-docs #6255
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: UI test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| accessibility: | |
| if: ${{ github.repository == 'primer/brand' }} | |
| name: Accessibility | |
| runs-on: | |
| labels: ubuntu-latest-16-cores | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Cache dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.npm | |
| key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node- | |
| - name: Install dependencies | |
| run: npm ci --legacy-peer-deps | |
| - name: Install Playwright | |
| run: npx playwright install | |
| - name: Build dependencies | |
| run: npm run build:lib && cd apps/storybook && npx storybook build | |
| - name: Serve Storybook and run tests | |
| run: npx start-server-and-test 'npm run start:axe --workspace=apps/storybook' 6006 'npm run test:axe' |