Skip to content

(chore): deprecate goerli #27

(chore): deprecate goerli

(chore): deprecate goerli #27

name: Build NextJS Typescript Hypercerts
on:
# A push occurs to one of the matched branches.
push:
branches:
- main
# Or when a pull request event occurs for a pull request against one of the
# matched branches.
pull_request:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
lint-and-build:
# NOTE: This name appears in GitHub's Checks API.
name: Lint and build NextJS TS app
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./apps/nextjs-ts-hypercerts
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8.9.0
- name: Set up Node.js 18
uses: actions/setup-node@v3
with:
node-version: "18.15.0"
cache: "pnpm"
cache-dependency-path: ./apps/nextjs-ts-hypercerts/pnpm-lock.yaml
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint
- name: Build
run: pnpm build