chore(deps): bump framer-motion from 11.4.0 to 11.5.2 #14797
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, synchronize] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
typecheck: | |
name: Typecheck | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🚪 | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js, pnpm and dependencies 🌸 | |
uses: ./.github/actions/setup-pnpm | |
- name: Typecheck 🔡 | |
run: pnpm typecheck | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🚪 | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js, pnpm and dependencies 🌸 | |
uses: ./.github/actions/setup-pnpm | |
- name: Lint 🪩 | |
run: pnpm lint | |
prettier: | |
name: Prettier | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🚪 | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js, pnpm and dependencies 🌸 | |
uses: ./.github/actions/setup-pnpm | |
- name: Prettier ✨ | |
run: pnpm prettier | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🚪 | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js, pnpm and dependencies 🌸 | |
uses: ./.github/actions/setup-pnpm | |
- name: Build 🎁 | |
run: pnpm build | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🚪 | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js, pnpm and dependencies 🌸 | |
uses: ./.github/actions/setup-pnpm | |
- name: Build 🎁 | |
run: pnpm build | |
- name: Run Tests 🧪 | |
run: pnpm test:dev |