revert api url changes. exclude auth from API_URL #4204
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: Node.js CI | |
| on: [push] | |
| env: | |
| DATABASE_URL: "postgresql://user:pass@localhost:5432/dummy" | |
| SKIP_DB_CHECK: 1 | |
| jobs: | |
| build: | |
| if: github.repository == 'umami-software/umami' | |
| runs-on: blacksmith-4vcpu-ubuntu-2404 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10.15.1 | |
| run_install: false | |
| - name: Use Node.js 22 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: "pnpm" | |
| - run: pnpm install | |
| - run: pnpm test | |
| - run: pnpm build |