-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(homebrew sharing): Begin working on adding functions for sharing…
… homebrew
- Loading branch information
1 parent
2811386
commit fa6a020
Showing
15 changed files
with
8,723 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,6 +56,20 @@ jobs: | |
env: | ||
GCP_SA_KEY: ${{ secrets.IRON_FELLOWSHIP_FIREBASE_SERVICE_ACCOUNT }} | ||
PROJECT_ID: "${{secrets.IRON_FELLOWSHIP_FIREBASE_PROJECTID}}" | ||
deploy_functions_iron_fellowship: | ||
name: Deploy Firebase Functions to Iron Fellowship | ||
runs-on: ubuntu-latest | ||
environment: Production | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: cd functions && npm ci && npm run build | ||
- uses: w9jds/[email protected] | ||
with: | ||
args: deploy --only functions | ||
env: | ||
GCP_SA_KEY: ${{ secrets.IRON_FELLOWSHIP_FIREBASE_SERVICE_ACCOUNT }} | ||
PROJECT_ID: "${{secrets.IRON_FELLOWSHIP_FIREBASE_PROJECTID}}" | ||
|
||
build_and_deploy_crew_link: | ||
name: Build and Deploy Crew Link to Firebase Hosting | ||
runs-on: ubuntu-latest | ||
|
@@ -105,3 +119,16 @@ jobs: | |
env: | ||
GCP_SA_KEY: ${{ secrets.CREW_LINK_FIREBASE_SERVICE_ACCOUNT }} | ||
PROJECT_ID: "${{secrets.CREW_LINK_FIREBASE_PROJECTID}}" | ||
deploy_functions_crew_link: | ||
name: Deploy Firebase Functions to Crew Link | ||
runs-on: ubuntu-latest | ||
environment: Production | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: cd functions && npm ci && npm run build | ||
- uses: w9jds/[email protected] | ||
with: | ||
args: deploy --only functions | ||
env: | ||
GCP_SA_KEY: ${{ secrets.CREW_LINK_FIREBASE_SERVICE_ACCOUNT }} | ||
PROJECT_ID: "${{secrets.CREW_LINK_FIREBASE_PROJECTID}}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,3 +52,16 @@ jobs: | |
env: | ||
GCP_SA_KEY: ${{ secrets.CREW_LINK_FIREBASE_SERVICE_ACCOUNT }} | ||
PROJECT_ID: "${{secrets.CREW_LINK_FIREBASE_PROJECTID}}" | ||
deploy_functions_crew_link: | ||
name: Deploy Firebase Functions to Crew Link | ||
runs-on: ubuntu-latest | ||
environment: Dev | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: cd functions && npm ci && npm run build | ||
- uses: w9jds/[email protected] | ||
with: | ||
args: deploy --only functions | ||
env: | ||
GCP_SA_KEY: ${{ secrets.CREW_LINK_FIREBASE_SERVICE_ACCOUNT }} | ||
PROJECT_ID: "${{secrets.CREW_LINK_FIREBASE_PROJECTID}}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,3 +52,16 @@ jobs: | |
env: | ||
GCP_SA_KEY: ${{ secrets.IRON_FELLOWSHIP_FIREBASE_SERVICE_ACCOUNT }} | ||
PROJECT_ID: "${{secrets.IRON_FELLOWSHIP_FIREBASE_PROJECTID}}" | ||
deploy_functions_iron_fellowship: | ||
name: Deploy Firebase Functions to Iron Fellowship | ||
runs-on: ubuntu-latest | ||
environment: Dev | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: cd functions && npm ci && npm run build | ||
- uses: w9jds/[email protected] | ||
with: | ||
args: deploy --only functions | ||
env: | ||
GCP_SA_KEY: ${{ secrets.IRON_FELLOWSHIP_FIREBASE_SERVICE_ACCOUNT }} | ||
PROJECT_ID: "${{secrets.IRON_FELLOWSHIP_FIREBASE_PROJECTID}}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
module.exports = { | ||
root: true, | ||
env: { | ||
es6: true, | ||
node: true, | ||
}, | ||
extends: [ | ||
"eslint:recommended", | ||
"plugin:import/errors", | ||
"plugin:import/warnings", | ||
"plugin:import/typescript", | ||
"plugin:@typescript-eslint/recommended", | ||
], | ||
parser: "@typescript-eslint/parser", | ||
parserOptions: { | ||
project: ["tsconfig.json", "tsconfig.dev.json"], | ||
sourceType: "module", | ||
}, | ||
ignorePatterns: [ | ||
"/lib/**/*", // Ignore built files. | ||
], | ||
plugins: ["@typescript-eslint", "import"], | ||
rules: { | ||
quotes: ["error", "double"], | ||
"import/no-unresolved": 0, | ||
indent: ["error", 2], | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Compiled JavaScript files | ||
lib/**/*.js | ||
lib/**/*.js.map | ||
|
||
# TypeScript v1 declaration files | ||
typings/ | ||
|
||
# Node.js dependency directory | ||
node_modules/ |
Oops, something went wrong.