Skip to content

feat: Migrate to Next.js #1735

feat: Migrate to Next.js

feat: Migrate to Next.js #1735

Workflow file for this run

name: CI
on:
repository_dispatch:
types: build-and-deploy
push:
branches:
- "**"
pull_request:
branches: [develop]
types: [opened, reopened, synchronize]
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Check spelling
uses: codespell-project/actions-codespell@v2
with:
ignore_words_file: .github/codespell-ignore
skip: .git,**/*.png,**/*.gif,**/*.jpg,**/*.svg,**/*.ico,**/*.json,package.json,package-lock.json,*.lock,*.excalidraw,HeroImage.tsx
- name: Install and Build 🔧
run: |
npm install
npx prettier --check "**/*.{graphql,yml,json,md,sh,ts,tsx,js}"
npm run typecheck
cd marketing && npm run build