Fixed CI build.

This commit is contained in:
Mike Cao 2025-12-11 18:25:23 -08:00
parent 7bea47d9e8
commit 2a71cc721b

View file

@ -3,7 +3,7 @@ name: Node.js CI
on: [push]
env:
DATABASE_TYPE: postgresql
DATABASE_URL: "postgresql://user:pass@localhost:5432/dummy"
SKIP_DB_CHECK: 1
jobs:
@ -11,26 +11,17 @@ jobs:
if: github.repository == 'umami-software/umami'
runs-on: ubuntu-latest
strategy:
matrix:
include:
- node-version: 18.18
pnpm-version: 10
db-type: postgresql
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4 # required so that setup-node will work
- uses: pnpm/action-setup@v4
with:
version: ${{ matrix.pnpm-version }}
version: 10
run_install: false
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js 18.18
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
env:
DATABASE_TYPE: ${{ matrix.db-type }}
node-version: 18.18
cache: "pnpm"
- run: npm install --global pnpm
- run: pnpm install
- run: pnpm test