Skip to content

Bump micromatch from 4.0.5 to 4.0.8 #56

Bump micromatch from 4.0.5 to 4.0.8

Bump micromatch from 4.0.5 to 4.0.8 #56

Workflow file for this run

name: Rick and Morty Site E2E Testing
on:
push:
branches: [master]
paths:
- 'src/**'
- 'test/**'
- 'package.json'
- 'tsconfig.json'
- 'pnpm-lock.yaml'
- 'vite.config.ts'
- 'playwright.config.ts'
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
- name: Site E2E Testing
run: pnpm run test.e2e