Skip to content

fix(db): fix the click views problem #5

fix(db): fix the click views problem

fix(db): fix the click views problem #5

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
backend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Test
run: go test ./...
frontend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install
run: npm ci
- name: Syntax check
run: node --check js/admin.js && node --check js/home.js && node --check js/ui.js && node --check main.js
- name: Build
run: npm run build