diff options
| author | stonedDiscord <Tukz@gmx.de> | 2025-06-27 13:32:21 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-27 13:32:21 +0200 |
| commit | 99bb1a1fa212b2c1be7bf04d7de23b25f89e29c6 (patch) | |
| tree | e67cd9635dfd412e8bc18cd1cd533286e25a335f /.github | |
| parent | 3ebf6ce3cb252901de1db96ce5df7b1c4a6711e9 (diff) | |
always test
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/test.yml | 18 |
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 |
