Skip to content

[ci] add api/web ci on push & pr #1

[ci] add api/web ci on push & pr

[ci] add api/web ci on push & pr #1

Workflow file for this run

name: API CI
on:
push:
branches: ["main"]
paths:
- "api/**"
pull_request:
jobs:
api:
runs-on: ubuntu-latest
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