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@v4 with: # https://github.com/changesets/changesets/issues/1055 fetch-depth: 0 - 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: Changeset # https://github.com/changesets/changesets/issues/1048 run: pnpm dlx @changesets/cli status --since origin/main - 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