52 lines
931 B
YAML
52 lines
931 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: ['main']
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
workflow_call:
|
|
|
|
env:
|
|
NEXT_PUBLIC_GHOST_API_URL: ''
|
|
NEXT_PUBLIC_GHOST_API_KEY: ''
|
|
INFURA_API_KEY: ''
|
|
|
|
jobs:
|
|
build:
|
|
name: Build and Test
|
|
timeout-minutes: 15
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 2
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v4
|
|
with:
|
|
version: 9.12.3
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20.18.0
|
|
cache: 'pnpm'
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Build
|
|
run: pnpm build
|
|
|
|
- name: Typecheck
|
|
run: pnpm typecheck
|
|
|
|
- name: Lint
|
|
run: pnpm lint && pnpm format --check
|
|
|
|
- name: Test
|
|
run: pnpm test
|