Skip to content

chore(deps): bump jinja2 from 3.1.2 to 3.1.4 in /server #621

chore(deps): bump jinja2 from 3.1.2 to 3.1.4 in /server

chore(deps): bump jinja2 from 3.1.2 to 3.1.4 in /server #621

Workflow file for this run

name: Client CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Install Node.js and npm
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install Client Dependencies
run: |
cd client
npm ci
- name: Lint Client Code
run: |
cd client
npm run lint
- name: Check Code Formatting in Client
run: |
cd client
npm run format:check