Skip to content

DEV-1479: Update content for Dwolla + Plaid guide #368

DEV-1479: Update content for Dwolla + Plaid guide

DEV-1479: Update content for Dwolla + Plaid guide #368

Workflow file for this run

# This workflow will do a clean installation of node dependencies, build the source code and run tests
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Use NVM Node version
uses: actions/setup-node@v3
with:
cache: pnpm
node-version-file: .nvmrc
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run ESLint & Prettier checks
run: pnpm checks
- name: Run CI tests
run: pnpm test:ci