Skip to content

Refactor API handlers to use centralized Salesforce field mappings #3

Refactor API handlers to use centralized Salesforce field mappings

Refactor API handlers to use centralized Salesforce field mappings #3

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run linter
run: pnpm run lint
- name: Run type check
run: pnpm run type-check
- name: Run unit tests
run: pnpm test --exclude='**/sf-contract.test.ts'