Enhace global search for other DBMS (Oracle, SQL Server, PostgreSQL, sqlite) #371
Workflow file for this run
This file contains hidden or 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: Test Build | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| pull_request: | |
| types: [ ready_for_review, synchronize, opened ] | |
| jobs: | |
| test-build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22.x' | |
| - name: Install NPM Dependencies | |
| run: npm install | |
| - name: Build | |
| run: npm run build | |
| - name: Build Tailwind 4 | |
| run: npm run build:tailwind |