remove unused workflows
This commit is contained in:
parent
45be8b4f1b
commit
f3f0b53a9b
3 changed files with 0 additions and 57 deletions
23
.github/workflows/firebase.yml
vendored
23
.github/workflows/firebase.yml
vendored
|
@ -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
|
|
20
.github/workflows/preview.yml
vendored
20
.github/workflows/preview.yml
vendored
|
@ -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
|
|
14
.github/workflows/validate.yml
vendored
14
.github/workflows/validate.yml
vendored
|
@ -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
|
|
Loading…
Reference in a new issue