Skip to content

Bump nanoid from 3.3.7 to 3.3.8 #46

Bump nanoid from 3.3.7 to 3.3.8

Bump nanoid from 3.3.7 to 3.3.8 #46

Workflow file for this run

on:
push:
branches: ['master']
pull_request:
branches: ['master']
jobs:
build-and-push:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
# Repository auschecken
- name: Check out repository
uses: actions/checkout@v4
# Node.js setzen
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
# Dependencies installieren
- name: Install dependencies
run: yarn install && yarn add autoprefixer
# Next.js-Projekt bauen
- name: Build the Next.js project
run: |
echo "🚀 Starting build..."
yarn build || (echo "❌ Build failed! Full logs:" && cat .next/output.log && exit 1)