Skip to content

fix(deps): update nextjs monorepo to v14.0.4 (patch) - autoclosed #1694

fix(deps): update nextjs monorepo to v14.0.4 (patch) - autoclosed

fix(deps): update nextjs monorepo to v14.0.4 (patch) - autoclosed #1694

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3.5.3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
- uses: pnpm/action-setup@v2.2.4
name: Install pnpm
id: pnpm-install
with:
version: 8.6.0
run_install: false
- name: Install dependencies
run: pnpm i --no-frozen-lockfile
- name: Typecheck
run: pnpm typecheck
- name: Find unused exports
run: pnpm find-deadcode
- name: Linting
run: pnpm lint
- name: Linting Styles
run: pnpm lint:css
- name: Test
run: pnpm test:ci
- name: Storybook
run: pnpm build-storybook
- name: Build
run: pnpm build