Skip to content

feat: add web logout endpoint to API #82

feat: add web logout endpoint to API

feat: add web logout endpoint to API #82

Workflow file for this run

name: Approvio API CI
on:
pull_request:
branches: ["main"]
jobs:
validate:
name: Lint, Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Build
run: yarn build
- name: Unit Tests
run: yarn test