diff options
Diffstat (limited to '.gitea/workflows')
-rw-r--r-- | .gitea/workflows/main.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.gitea/workflows/main.yml b/.gitea/workflows/main.yml new file mode 100644 index 0000000..6ee3279 --- /dev/null +++ b/.gitea/workflows/main.yml @@ -0,0 +1,14 @@ +name: Test +on: [push, pull_request] + +jobs: + test: + container: gitea/runner-images:ubuntu-latest + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 22 + - run: npm ci + - run: npm run check |