diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml new file mode 100644 index 0000000..84aead9 --- /dev/null +++ b/.forgejo/workflows/deploy.yml @@ -0,0 +1,19 @@ +on: + push: + branches: + - master + + +jobs: + deploy: + runs-on: arch + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - name: Run Tests + run: | + npm install + npm run test -- --ignore-only + if [ $? -ne 0 ]; then + exit 1 + fi