Skip to content

Bump framer-motion from 10.18.0 to 11.0.25 #5802

Bump framer-motion from 10.18.0 to 11.0.25

Bump framer-motion from 10.18.0 to 11.0.25 #5802

Workflow file for this run

name: πŸš€ Deploy
on:
push:
branches:
- main
pull_request: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
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: 20
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- uses: actions/cache@v3
with:
# See here for caching with `yarn` https://github.com/actions/cache/blob/main/examples.md#node---yarn or you can leverage caching with actions/setup-node https://github.com/actions/setup-node
path: |
${{ github.workspace }}/.next/cache
# Generate a new cache whenever packages or source files change.
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx', '**/*.mdx') }}
# If source files changed but packages didn't, rebuild from a prior cache.
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}-
- name: πŸ‘·β€β™‚οΈ Build
run: pnpm build
- name: Install dependencies
run: pnpm install
- name: πŸ”¬ Lint
run: pnpm lint
- name: πŸ”Ž Type check
run: pnpm typecheck
- name: πŸ’… Prettier
run: pnpm format