Skip to content

🎨 Refactoring naming of methods #1

🎨 Refactoring naming of methods

🎨 Refactoring naming of methods #1

Workflow file for this run

name: Everfund CI
on:
push:
branches: ['main']
pull_request:
jobs:
build:
name: Install dependencies
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
tests:
name: Tests
needs: build
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Run tests
run: pnpm test
linter:
name: Linter
needs: build
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Run linter
run: pnpm lint