aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorstonedDiscord <Tukz@gmx.de>2025-06-27 13:32:21 +0200
committerGitHub <noreply@github.com>2025-06-27 13:32:21 +0200
commit99bb1a1fa212b2c1be7bf04d7de23b25f89e29c6 (patch)
treee67cd9635dfd412e8bc18cd1cd533286e25a335f /.github
parent3ebf6ce3cb252901de1db96ce5df7b1c4a6711e9 (diff)
always test
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
new file mode 100644
index 0000000..f8676b8
--- /dev/null
+++ b/.github/workflows/test.yml
@@ -0,0 +1,18 @@
+name: Test CI
+
+on: [push, pull_request]
+
+jobs:
+ test:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+ - name: Setup Node
+ uses: actions/setup-node@v4
+ with:
+ node-version: 20
+ - name: Install Dependencies
+ run: npm install
+ - name: Run Tests
+ run: npm test