Skip to content

feat(ui): add tool tip and update codeblock style (#11) #95

feat(ui): add tool tip and update codeblock style (#11)

feat(ui): add tool tip and update codeblock style (#11) #95

Workflow file for this run

name: Build SQLite Studio
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install npm dependencies
run: |
cd ui
npm install
- name: Build npm project
run: |
cd ui
npm run build
- name: Build Rust project
run: cargo build --release