From 1661dfd637f49f6ea34c2b091a6382c01c49aaa4 Mon Sep 17 00:00:00 2001 From: pieartsy Date: Tue, 17 Feb 2026 11:14:54 -0500 Subject: [PATCH 1/3] Create FUNDING.yml Added github sponsorship. --- .github/FUNDING.yml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..b443617 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,3 @@ +# These are supported funding model platforms + +github: pieartsy From 74cab4f91f2f8950f4418a3653ed644a4e5ddb50 Mon Sep 17 00:00:00 2001 From: pieartsy Date: Tue, 17 Feb 2026 11:15:34 -0500 Subject: [PATCH 2/3] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 804f01a..eb7987e 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,8 @@ PluralFlux is a proxybot akin to PluralKit and Tupperbox, but for [Fluxer](https [Join the support server](https://fluxer.gg/WaO6qGdU) +[Sponsor the project](https://github.com/sponsors/pieartsy) + If it's not running at the moment, it's because my computer crashed or something. I'm looking to move running it to a somewhat more permanent solution. ## Commands @@ -34,4 +36,4 @@ You can optionally add a display name after the member name, for example: `pf;me - [ ] React with x to delete message - [ ] System tag at the end of messages - [ ] Optionally keep proxy tag in message -- [ ] Autoproxy front \ No newline at end of file +- [ ] Autoproxy front From 4f2e8934917357b243cbcf6f2ff8422475ba8aeb Mon Sep 17 00:00:00 2001 From: pieartsy Date: Tue, 17 Feb 2026 11:41:30 -0500 Subject: [PATCH 3/3] Create node.js.yml Workflow for node.js (hopefully works) --- .github/workflows/node.js.yml | 39 +++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/node.js.yml diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml new file mode 100644 index 0000000..e158f80 --- /dev/null +++ b/.github/workflows/node.js.yml @@ -0,0 +1,39 @@ +# 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 +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs + +name: Node.js CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [25.3.0] + + steps: + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + cache: 'npm' + + - name: Run tests + run: npm test + working-directory: tests + + - name: Tests failed + if: failure() + run: exit 1 + + - name: Tests passed + run: npm run build --if-present + working-directory: src