Skip to content

Lower reserved CKB from 1000 to 600 %10 #9

Lower reserved CKB from 1000 to 600 %10

Lower reserved CKB from 1000 to 600 %10 #9

Workflow file for this run

name: Lint and build
on: [pull_request, push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
run_install: false
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "lts/*"
registry-url: "https://registry.npmjs.org"
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Build project
run: pnpm build
- name: Lint project
run: pnpm lint