commit 1085a98482ddbe1b58190495ed1916a767907c02
parent 6200f4731cdc936f4fe91dc646fb8b1e95fbee27
Author: finwo <finwo@pm.me>
Date: Sun, 24 May 2026 22:39:42 +0200
Update repository commons
Diffstat:
3 files changed, 5 insertions(+), 6 deletions(-)
diff --git a/.editorconfig b/.editorconfig
@@ -7,9 +7,7 @@ insert_final_newline = true
charset = utf-8
indent_size = 2
indent_style = space
-
-[*.{php,html}]
-indent_size = 4
+trim_trailing_whitespace = true
[Makefile*]
indent_style = tab
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
@@ -1,3 +1,3 @@
# f4d2ed80-57b6-46e6-b245-5049428a931d
github: finwo
-patreon: finwo
+liberapay: finwo
diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml
@@ -21,7 +21,7 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- - run: npm ci
+ - run: npm install
- run: npm run build --if-present
- run: npm test
env:
@@ -37,8 +37,9 @@ jobs:
with:
node-version: 14
registry-url: https://registry.npmjs.org/
+ - run: rm -rf node_modules
- run: npm ci
- - run: npm build
+ - run: npm run build --if-present
- run: if [ $(npm view $(node -p "require('./package.json').name") version) != $(node -p "require('./package.json').version") ]; then npm publish ; fi
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}