Merge pull request #42 from Victor1890/fix/ui-query #223
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build SQL 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 | |
build-with-nix: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@main | |
- name: Build Release | |
run: nix build . | |
- name: Build Docker Image | |
run: nix build .#docker |