Skip to content

feat: add new web services and update icons in Home component #47

feat: add new web services and update icons in Home component

feat: add new web services and update icons in Home component #47

Workflow file for this run

name: Next.js CI/CD
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-24.04
timeout-minutes: 10
defaults:
run:
shell: bash --noprofile --norc -eo pipefail {0}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 10.4.1
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: "20.18.0"
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm run lint
- name: Build Next.js app
run: pnpm run build
- name: Install Wrangler
run: pnpm add -g wrangler@latest
- name: Deploy Next.js app
run: pnpm run deploy
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
NODE_OPTIONS: "--max-old-space-size=4096"