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
39
.github/workflows/ci.yml
vendored
39
.github/workflows/ci.yml
vendored
|
|
@ -3,7 +3,7 @@ name: Node.js CI
|
||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
env:
|
env:
|
||||||
DATABASE_TYPE: postgresql
|
DATABASE_URL: "postgresql://user:pass@localhost:5432/dummy"
|
||||||
SKIP_DB_CHECK: 1
|
SKIP_DB_CHECK: 1
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
@ -11,27 +11,18 @@ jobs:
|
||||||
if: github.repository == 'umami-software/umami'
|
if: github.repository == 'umami-software/umami'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
- node-version: 18.18
|
|
||||||
pnpm-version: 10
|
|
||||||
db-type: postgresql
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: pnpm/action-setup@v4 # required so that setup-node will work
|
- uses: pnpm/action-setup@v4
|
||||||
with:
|
with:
|
||||||
version: ${{ matrix.pnpm-version }}
|
version: 10
|
||||||
run_install: false
|
run_install: false
|
||||||
- name: Use Node.js ${{ matrix.node-version }}
|
- name: Use Node.js 18.18
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: 18.18
|
||||||
cache: 'pnpm'
|
cache: "pnpm"
|
||||||
env:
|
- run: npm install --global pnpm
|
||||||
DATABASE_TYPE: ${{ matrix.db-type }}
|
- run: pnpm install
|
||||||
- run: npm install --global pnpm
|
- run: pnpm test
|
||||||
- run: pnpm install
|
- run: pnpm build
|
||||||
- run: pnpm test
|
|
||||||
- run: pnpm build
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue