Skip to content

feat: bard router now works without a need for declaring route configs #7

feat: bard router now works without a need for declaring route configs

feat: bard router now works without a need for declaring route configs #7

Workflow file for this run

name: Lint and Test
on:
pull_request:
branches:
- '*'
push:
branches:
- master
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install Dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
- name: Run Jest
run: npm run test-unit