Skip to content

Bump the minor-patch group in /backend with 3 updates #395

Bump the minor-patch group in /backend with 3 updates

Bump the minor-patch group in /backend with 3 updates #395

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