Skip to content

Add fund cpool and tweaks #297

Add fund cpool and tweaks

Add fund cpool and tweaks #297

Workflow file for this run

on:
# Push to long living branches or PRs
push:
branches:
- master
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- run: npm ci
- run: npm run lint
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- run: npm ci
- run: npm run test:ci
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- run: npm ci
- run: cp .env.sample .env.local
- run: npm run build