Skip to content

fix(deps): update dependency @headlessui/react to v2.1.9 #9874

fix(deps): update dependency @headlessui/react to v2.1.9

fix(deps): update dependency @headlessui/react to v2.1.9 #9874

Workflow file for this run

name: CI-nextjs-app
on:
push:
branches: [dev, main]
# Only consider those paths to trigger the action
paths:
- 'apps/nextjs-app/**'
- 'packages/**'
- 'package.json'
- '*.lock'
- '.yarnrc.yml'
- 'tsconfig.base.json'
- '.prettier*'
- '.github/**'
pull_request:
types: [opened, synchronize, reopened]
# Only consider those paths to trigger the action
paths:
- 'apps/nextjs-app/**'
- 'packages/**'
- 'package.json'
- '*.lock'
- '.yarnrc.yml'
- 'tsconfig.base.json'
- '.prettier*'
- '.github/**'
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: apps/nextjs-app
strategy:
matrix:
node-version: [20.x]
env:
TURBO_API: 'http://127.0.0.1:9080'
TURBO_TEAM: 'nextjs-monorepo-example'
TURBO_TOKEN: 'local_server_turbo_relaxed_token'
steps:
- uses: actions/checkout@v4
- name: ⚙️ Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: ⏩ TurboRepo local server
uses: felixmosh/turborepo-gh-artifacts@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
server-token: ${{ env.TURBO_TOKEN }}
- name: 📥 Monorepo install
uses: ./.github/actions/yarn-nm-install
- name: ♻️ Restore nextjs-app related caches
uses: actions/cache@v4
with:
path: |
${{ github.workspace }}/apps/nextjs-app/.next/cache
${{ github.workspace }}/.cache
${{ github.workspace }}/**/tsconfig.tsbuildinfo
key: nextjs-app-cache-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- name: 🕵️ Typecheck
run: yarn --top-level run turbo typecheck
- name: 🔬 Linter
run: yarn --top-level run turbo lint
env:
TIMING: 1
- name: 🧪 Unit tests
run: yarn --top-level run turbo test-unit
- name: 🏗 Build web-app
run: yarn --top-level run turbo build
env:
NEXT_BUILD_ENV_ESLINT: false
NEXT_BUILD_ENV_TYPECHECK: false
NEXT_BUILD_ENV_SOURCEMAPS: false
NEXT_BUILD_ENV_SENTRY_ENABLED: true
NEXT_BUILD_ENV_SENTRY_UPLOAD_DRY_RUN: true
NEXT_TELEMETRY_DISABLED: true
- name: 📐 Check browser bundle size limits
run: yarn check-size
- name: 🛟 Check ecmascript checks for build files
run: yarn check-dist