Skip to content

Bump sqlparse from 0.4.4 to 0.5.0 in /server #32

Bump sqlparse from 0.4.4 to 0.5.0 in /server

Bump sqlparse from 0.4.4 to 0.5.0 in /server #32

Workflow file for this run

name: 'Lint Client'
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./client
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint