From f3f0b53a9b60e72ab11601062703d21e6dd96d61 Mon Sep 17 00:00:00 2001 From: chark1es Date: Sun, 8 Dec 2024 08:37:08 -0800 Subject: [PATCH] remove unused workflows --- .github/workflows/firebase.yml | 23 ----------------------- .github/workflows/preview.yml | 20 -------------------- .github/workflows/validate.yml | 14 -------------- 3 files changed, 57 deletions(-) delete mode 100644 .github/workflows/firebase.yml delete mode 100644 .github/workflows/preview.yml delete mode 100644 .github/workflows/validate.yml diff --git a/.github/workflows/firebase.yml b/.github/workflows/firebase.yml deleted file mode 100644 index 01ec716..0000000 --- a/.github/workflows/firebase.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: deploy-production - -on: - push: - branches: [main] - -jobs: - build-and-deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v3 - with: - node-version: 20 - - run: | - npm ci - npm run build - - uses: waymondrang/action-hosting-deploy@v1 - with: - repoToken: "${{ secrets.GITHUB_TOKEN }}" - firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT }}" - projectId: ieeeucsd-org - channelId: live diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml deleted file mode 100644 index d2e2f6b..0000000 --- a/.github/workflows/preview.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: deploy-preview - -on: pull_request - -jobs: - build-and-preview: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v3 - with: - node-version: 16 - - run: | - npm ci - npm run build - - uses: waymondrang/action-hosting-deploy@v1 - with: - repoToken: "${{ secrets.GITHUB_TOKEN }}" - firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT }}" - projectId: ieeeucsd-org diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml deleted file mode 100644 index 1e9832f..0000000 --- a/.github/workflows/validate.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: validation-testing - -on: [push, pull_request] - -jobs: - validate: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - - name: Install Dependencies - run: npm ci - - name: Run eslint - run: npm run lint