diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml new file mode 100644 index 0000000..4f56aa5 --- /dev/null +++ b/.forgejo/workflows/ci.yaml @@ -0,0 +1,22 @@ +name: Bump deps (only minor versions) + +on: [push] + +jobs: + update-dependencies: + runs-on: docker + + steps: + - name: Checkout Repository + uses: actions/checkout@v3 + with: + token: ${{ secrets.FORGEJO_TOKEN }} + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: '20' + - name: Prepare, Check, Lint and Format + run: | + npm install + npm run prepare + npm run check \ No newline at end of file