Skip to content

Bump org.xerial:sqlite-jdbc from 3.46.1.3 to 3.49.1.0 in /backend #73

Bump org.xerial:sqlite-jdbc from 3.46.1.3 to 3.49.1.0 in /backend

Bump org.xerial:sqlite-jdbc from 3.46.1.3 to 3.49.1.0 in /backend #73

Workflow file for this run

name: Frontend
on:
pull_request_target:
branches:
- main
types:
- opened
- reopened
- synchronize
jobs:
validate:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 22.8.0
- name: Install dependencies
shell: bash
working-directory: frontend
run: npm ci
- name: Check format
shell: bash
working-directory: frontend
run: npm run check:format
- name: Check eslint
shell: bash
working-directory: frontend
run: npm run check:lint
- name: Check build
shell: bash
working-directory: frontend
run: npm run build