Skip to content

content: The experiment has completed #152

content: The experiment has completed

content: The experiment has completed #152

Workflow file for this run

name: build check
on:
push:
branches: 'main'
pull_request:
branches:
- '*'
jobs:
build-check:
runs-on: ubuntu-latest
env:
PUBLIC_DEVTOOLS_ON: false
PUBLIC_BLOG_SERVER: https://blog.app
PUBLIC_L402_SERVER: https://l402.api
PUBLIC_SERVICE_NPUBKEY: npub123
steps:
- name: Checkout
uses: actions/checkout@v3
# If you're using pnpm, add this step then change the commands and cache key below to use `pnpm`
# - name: Install pnpm
# uses: pnpm/action-setup@v2
# with:
# version: 8
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm install
- name: build
env:
BASE_PATH: '/${{ github.event.repository.name }}'
run: npm run build
- name: lint
run: npm run lint
- name: type-check
run: npm run check