use pnpm #1948
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v3 | |
with: | |
node-version: 18 | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm --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 |