mirror of
https://github.com/umami-software/umami.git
synced 2026-02-14 17:45:38 +01:00
commit
62d9e0afc4
4 changed files with 5 additions and 3 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
|
@ -16,9 +16,9 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- node-version: 18.17
|
- node-version: 18.18
|
||||||
db-type: postgresql
|
db-type: postgresql
|
||||||
- node-version: 18.17
|
- node-version: 18.18
|
||||||
db-type: mysql
|
db-type: mysql
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ A detailed getting started guide can be found at [umami.is/docs](https://umami.i
|
||||||
|
|
||||||
### Requirements
|
### Requirements
|
||||||
|
|
||||||
- A server with Node.js version 16.13 or newer
|
- A server with Node.js version 18.18 or newer
|
||||||
- A database. Umami supports [MariaDB](https://www.mariadb.org/) (minimum v10.5), [MySQL](https://www.mysql.com/) (minimum v8.0) and [PostgreSQL](https://www.postgresql.org/) (minimum v12.14) databases.
|
- A database. Umami supports [MariaDB](https://www.mariadb.org/) (minimum v10.5), [MySQL](https://www.mysql.com/) (minimum v8.0) and [PostgreSQL](https://www.postgresql.org/) (minimum v12.14) databases.
|
||||||
|
|
||||||
### Install Yarn
|
### Install Yarn
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
import * as detect from '../detect';
|
import * as detect from '../detect';
|
||||||
|
import { expect } from '@jest/globals';
|
||||||
|
|
||||||
const IP = '127.0.0.1';
|
const IP = '127.0.0.1';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
import * as format from '../format';
|
import * as format from '../format';
|
||||||
|
import { expect } from '@jest/globals';
|
||||||
|
|
||||||
test('parseTime', () => {
|
test('parseTime', () => {
|
||||||
expect(format.parseTime(86400 + 3600 + 60 + 1)).toEqual({
|
expect(format.parseTime(86400 + 3600 + 60 + 1)).toEqual({
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue