You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
2
-
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3
-
4
1
name: Node.js CI
5
2
6
3
on: [push]
@@ -11,26 +8,30 @@ env:
11
8
12
9
jobs:
13
10
build:
11
+
if: github.repository == 'umami-software/umami'
14
12
runs-on: ubuntu-latest
15
13
16
14
strategy:
17
15
matrix:
18
16
include:
19
17
- node-version: 18.18
18
+
pnpm-version: 10
20
19
db-type: postgresql
21
-
- node-version: 18.18
22
-
db-type: mysql
23
20
24
21
steps:
25
22
- uses: actions/checkout@v4
23
+
- uses: pnpm/action-setup@v4 # required so that setup-node will work
0 commit comments