Skip to content

chore(deps): bump @emotion/react from 11.13.5 to 11.14.0 #2295

chore(deps): bump @emotion/react from 11.13.5 to 11.14.0

chore(deps): bump @emotion/react from 11.13.5 to 11.14.0 #2295

Workflow file for this run

name: Can be deployed
on:
push:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Set up Node.js ✨
uses: actions/setup-node@v4
with:
node-version: "lts/*"
- name: Cache
uses: actions/[email protected]
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: |
~/.npm
${{ github.workspace }}/.next/cache
# Generate a new cache whenever packages or source files change.
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }}
# If source files changed but packages didn't, rebuild from a prior cache.
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-
- name: Install and Build 🔧
run: |
npm install
npm run build