Skip to content

Bump tailwind-merge from 2.4.0 to 2.5.2 (#244) #197

Bump tailwind-merge from 2.4.0 to 2.5.2 (#244)

Bump tailwind-merge from 2.4.0 to 2.5.2 (#244) #197

Workflow file for this run

name: Check Next.js Build
on:
push:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
cache-dependency-path: '**/yarn.lock'
- name: Restore cache
uses: actions/cache@v3
with:
path: |
.next/cache
# Generate a new cache whenever packages or source files change.
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
# If source files changed but packages didn't, rebuild from a prior cache.
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-
- name: Install project dependencies
run: yarn install
- name: Build Next.js site
run: yarn build