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