Skip to content

build(deps): bump next from 15.5.20 to 16.2.10 in /chat #10

build(deps): bump next from 15.5.20 to 16.2.10 in /chat

build(deps): bump next from 15.5.20 to 16.2.10 in /chat #10

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
name: Build ${{ matrix.app }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# agents-demo is excluded: WIP against the unpublished @hypery/agents API
app: [auth-demo, chat, fiber, imagine, justmakeit, vercel-demo]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
cache-dependency-path: ${{ matrix.app }}/package-lock.json
- name: Install
working-directory: ${{ matrix.app }}
run: npm ci
- name: Build
working-directory: ${{ matrix.app }}
run: npm run build
secret-scan:
name: Secret scan
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Gitleaks (CLI — the action requires an org license)
run: |
VERSION=8.30.1
curl -sL "https://github.com/gitleaks/gitleaks/releases/download/v${VERSION}/gitleaks_${VERSION}_linux_x64.tar.gz" | tar -xz gitleaks
./gitleaks git --log-opts="--all" --redact -v .
- name: No env files
run: |
FOUND=$(find . -name '.env*' ! -name '.env.example' -not -path './node_modules/*' -not -path './.git/*')
if [ -n "$FOUND" ]; then echo "env files present:"; echo "$FOUND"; exit 1; fi