Skip to content

Added new README Docs (#95) #12

Added new README Docs (#95)

Added new README Docs (#95) #12

Workflow file for this run

name: Everfund CI
on:
push:
branches: ['main']
pull_request:
jobs:
build:
name: Run Tests
timeout-minutes: 15
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run tests
run: pnpm test