Bump micromatch, @primer/gatsby-theme-doctocat, gatsby and gatsby-plugin-postcss in /apps/docs #430
This file contains 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: Visual test | |
on: | |
pull_request: | |
types: [labeled] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
update-snapshots: | |
if: ${{ github.event.label.name == 'update snapshots' }} | |
name: Update snapshots | |
runs-on: | |
labels: ubuntu-latest-16-cores | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.head_ref }} | |
- name: Set up Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
- name: Cache dependencies | |
uses: actions/cache@v2 | |
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 && cd apps/docs && npm ci --legacy-peer-deps | |
- name: Build assets | |
run: npm run build:lib && cd apps/storybook && npx storybook build | |
- name: Build storybook | |
run: cd apps/storybook && npx storybook build | |
- name: Install browsers | |
run: npx playwright install --with-deps | |
- name: Regenerate spec files | |
run: cd packages/e2e && npm run test:visual:generate | |
- name: Update snapshots | |
run: npx start-server-and-test 'npx http-server ./apps/storybook/storybook-static -p 6006' 6006 'cd packages/e2e && npx playwright test --update-snapshots' | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: github-actions[bot] Regenerated snapshots |