Skip to content

Merge pull request #24 from a11rew/ag/examples #20

Merge pull request #24 from a11rew/ag/examples

Merge pull request #24 from a11rew/ag/examples #20

Workflow file for this run

name: Build & Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Build & Lint
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup PNPM
uses: pnpm/action-setup@v2
with:
version: 8.6.11
- name: Setup Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: "pnpm"
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm run build
env:
NODE_ENV: production
NEXT_PUBLIC_PAYSTACK_PUBLICK_KEY: ci
- name: Lint
run: pnpm run lint