Skip to content

Feat/paystack integration #370

Feat/paystack integration

Feat/paystack integration #370

name: Lint, Build and Test
on:
pull_request
jobs:
lint-build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm install --include=dev
- name: Run lint
run: npm run lint
- name: Build project
run: npm run build
- name: Run tests
run: npm run test