Skip to content

[api] setup jwt guard to enforce jwt login #5

[api] setup jwt guard to enforce jwt login

[api] setup jwt guard to enforce jwt login #5

Workflow file for this run

name: API CI
on:
push:
branches: ["main"]
paths:
- "api/**"
pull_request:
jobs:
api:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./api
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install modules
run: yarn
- name: Run ESLint
run: yarn lint
- name: Run unit tests
run: yarn test