mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
Fixed CI build.
This commit is contained in:
parent
7bea47d9e8
commit
2a71cc721b
1 changed files with 15 additions and 24 deletions
21
.github/workflows/ci.yml
vendored
21
.github/workflows/ci.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue