mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +01:00
# Conflicts: # .github/workflows/ci.yml # src/lang/es-ES.json # src/lang/sl-SI.json # src/lib/constants.ts # src/lib/detect.ts # src/queries/sql/reports/getRevenue.ts
32 lines
659 B
YAML
32 lines
659 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
|
|
db-type: postgresql
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- 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
|