Skip to content

Bump version to 0.0.40 #75

Bump version to 0.0.40

Bump version to 0.0.40 #75

name: Build Nextjs Boilerplate Template without Surf Frontend
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
concurrency: ci-${{ github.ref }}-${{ github.workflow }}
defaults:
run:
working-directory: ./templates/nextjs-boilerplate-template
steps:
- uses: actions/checkout@v3
# Remove surf related files
- run: rm ./src/components/MessageBoardWithSurf.tsx
- run: rm ./src/components/TransferAPTWithSurf.tsx
- run: rm -rf ./src/view-functions-with-surf
- run: rm ./src/utils/surfClient.ts
# Install pnpm
- uses: pnpm/action-setup@v2
with:
version: 8.6.1
run_install: false
# Install deps and build.
- run: pnpm install
- run: CI= pnpm build
# Verify that the format is correct
- run: npm run _fmt -- --check
shell: bash