Skip to content

Test/proof

Test/proof #57

Workflow file for this run

name: Run Eslint & Test cases
on:
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v3
- name: Install pnpm
run: npm install -g pnpm@7.33.5
- name: Install Project Dependencies
run: pnpm install
- name: Run Eslint
run: pnpm lint
- name: Build Graphql queries
run: pnpm mesh build
- name: Format code
run: pnpm format
- name: Test project
run: pnpm test