Skip to content

Commit 1e2f0a1

Browse files
committed
Merge branch '4.x-dev' into 5.x-dev
2 parents 3d5497b + e6fd0b7 commit 1e2f0a1

4 files changed

Lines changed: 56 additions & 122 deletions

File tree

.github/workflows/matomo-tests.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Action for running tests
2+
# This file has been automatically created.
3+
# To recreate it you can run this command
4+
# ./console generate:test-action --plugin="TreemapVisualization" --php-versions="7.2,8.1"
5+
6+
name: Plugin TreemapVisualization Tests
7+
8+
on:
9+
pull_request:
10+
types: [opened, synchronize]
11+
push:
12+
branches:
13+
- '**.x-dev'
14+
workflow_dispatch:
15+
16+
permissions:
17+
actions: read
18+
checks: none
19+
contents: read
20+
deployments: none
21+
issues: read
22+
packages: none
23+
pull-requests: read
24+
repository-projects: none
25+
security-events: none
26+
statuses: none
27+
28+
concurrency:
29+
group: php-${{ github.ref }}
30+
cancel-in-progress: true
31+
32+
jobs:
33+
UI:
34+
runs-on: ubuntu-20.04
35+
steps:
36+
- uses: actions/checkout@v3
37+
with:
38+
lfs: true
39+
persist-credentials: false
40+
- name: running tests
41+
uses: matomo-org/github-action-tests@main
42+
with:
43+
plugin-name: 'TreemapVisualization'
44+
matomo-test-branch: 'maximum_supported_matomo'
45+
test-type: 'UI'
46+
php-version: '7.2'
47+
node-version: '16'
48+
artifacts-pass: ${{ secrets.ARTIFACTS_PASS }}
49+
upload-artifacts: true

.travis.yml

Lines changed: 0 additions & 120 deletions
This file was deleted.

lang/de.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"TreemapVisualization": {
33
"PluginDescription": "Visualisieren Sie jeden Bericht in Matomo als Treemap. Klicken Sie auf das Treemap-Symbol in einem Bericht, um die Visualisierung zu laden.",
4-
"Treemap": "Treemap"
4+
"Treemap": "Verzeichnisbaum"
55
}
66
}

lang/pl.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
{}
1+
{
2+
"TreemapVisualization": {
3+
"PluginDescription": "Wizualizacja dowolnego raportu w Matomo jako mapy drzewa. Kliknij na ikonę Mapy drzewa w każdym raporcie, aby załadować wizualizację.",
4+
"Treemap": "Mapa drzewa"
5+
}
6+
}

0 commit comments

Comments
 (0)