Skip to content

Bump gunicorn from 21.2.0 to 22.0.0 in /backend #18

Bump gunicorn from 21.2.0 to 22.0.0 in /backend

Bump gunicorn from 21.2.0 to 22.0.0 in /backend #18

Workflow file for this run

name: Frontend CI
on:
push:
branches: ["main"]
pull_request: {}
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: "./frontend/package-lock.json"
- name: Install dependencies
run: npm install
- name: Run linter
run: make lint
- name: Run types
run: make typecheck