mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
# Conflicts: # .github/workflows/cd-manual.yml # .github/workflows/cd.yml # .github/workflows/ci.yml # src/lib/detect.ts
37 lines
838 B
YAML
37 lines
838 B
YAML
name: Node.js CI
|
|
|
|
on: [push]
|
|
|
|
env:
|
|
DATABASE_TYPE: postgresql
|
|
SKIP_DB_CHECK: 1
|
|
|
|
jobs:
|
|
build:
|
|
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
|
|
with:
|
|
version: ${{ matrix.pnpm-version }}
|
|
run_install: false
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: 'pnpm'
|
|
env:
|
|
DATABASE_TYPE: ${{ matrix.db-type }}
|
|
- run: npm install --global pnpm
|
|
- run: pnpm install
|
|
- run: pnpm test
|
|
- run: pnpm build
|