From 348fd35167973538c0463ee9d262a2ae3cadd3ef Mon Sep 17 00:00:00 2001 From: jolts Date: Sat, 25 Jan 2025 08:00:33 +0200 Subject: [PATCH] chore: remove CI workflow configuration --- .forgejo/workflows/ci.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .forgejo/workflows/ci.yml diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml deleted file mode 100644 index bc80691..0000000 --- a/.forgejo/workflows/ci.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: CI - -on: - push: - branches: [main, master] - pull_request: - branches: [main, master] - -jobs: - build-and-publish: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: Use Node.js - uses: actions/setup-node@v3 - with: - node-version: "18.x" - registry-url: "https://registry.npmjs.org" - - - name: Install dependencies - run: npm ci - - - name: Build - run: npm run build - - - name: Publish to NPM - run: npm publish - env: - NODE_AUTH_TOKEN: ${{ secrets.PUBLISH_TOKEN }}