From 2d4cf4368e0f023f0e587e6fbbab19ea9e18d009 Mon Sep 17 00:00:00 2001 From: Alexa Amundson <118287761+blackboxprogramming@users.noreply.github.com> Date: Mon, 16 Mar 2026 12:22:15 -0500 Subject: [PATCH] =?UTF-8?q?cleanup:=20remove=20unused=20workflow=20?= =?UTF-8?q?=E2=80=94=20Actions=20disabled,=20CI=20runs=20on=20Gitea?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/node-deploy.yml | 56 ------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 .github/workflows/node-deploy.yml diff --git a/.github/workflows/node-deploy.yml b/.github/workflows/node-deploy.yml deleted file mode 100644 index 74137d3..0000000 --- a/.github/workflows/node-deploy.yml +++ /dev/null @@ -1,56 +0,0 @@ -name: Node.js Build and Deploy - -on: - push: - branches: [main, master] - pull_request: - branches: [main, master] - -jobs: - build-and-test: - runs-on: ubuntu-latest - if: ${{ hashFiles('package.json') != '' }} - - strategy: - matrix: - node-version: [18.x, 20.x] - - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node-version }} - cache: 'npm' - - - name: Install dependencies - run: npm ci - - - name: Lint - run: npm run lint --if-present - continue-on-error: true - - - name: Build - run: npm run build --if-present - - - name: Test - run: npm test --if-present - continue-on-error: true - - deploy-railway: - needs: build-and-test - runs-on: ubuntu-latest - if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' - - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Deploy to Railway - run: | - npm install -g @railway/cli - railway up - env: - RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }}