-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from elidakirigo/auto-flow
Auto flow
- Loading branch information
Showing
6 changed files
with
114 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"workbench.colorCustomizations": { | ||
"activityBar.activeBackground": "#0f0ddf", | ||
"activityBar.background": "#0f0ddf", | ||
"activityBar.foreground": "#e7e7e7", | ||
"activityBar.inactiveForeground": "#e7e7e799", | ||
"activityBarBadge.background": "#1e0202", | ||
"activityBarBadge.foreground": "#e7e7e7", | ||
"commandCenter.border": "#e7e7e799", | ||
"editorGroup.border": "#0f0ddf", | ||
"panel.border": "#0f0ddf", | ||
"sash.hoverBorder": "#0f0ddf", | ||
"sideBar.border": "#0f0ddf", | ||
"statusBar.background": "#0c0aaf", | ||
"statusBar.border": "#0c0aaf", | ||
"statusBar.debuggingBackground": "#adaf0a", | ||
"statusBar.debuggingBorder": "#adaf0a", | ||
"statusBar.debuggingForeground": "#15202b", | ||
"statusBar.foreground": "#e7e7e7", | ||
"statusBarItem.hoverBackground": "#0f0ddf", | ||
"statusBarItem.remoteBackground": "#0c0aaf", | ||
"statusBarItem.remoteForeground": "#e7e7e7", | ||
"tab.activeBorder": "#0f0ddf", | ||
"titleBar.activeBackground": "#0c0aaf", | ||
"titleBar.activeForeground": "#e7e7e7", | ||
"titleBar.border": "#0c0aaf", | ||
"titleBar.inactiveBackground": "#0c0aaf99", | ||
"titleBar.inactiveForeground": "#e7e7e799" | ||
}, | ||
"peacock.color": "#0c0aaf" | ||
} |
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,45 @@ | ||
# name: Linters | ||
|
||
# on: pull_request | ||
|
||
# env: | ||
# FORCE_COLOR: 1 | ||
|
||
# jobs: | ||
# eslint: | ||
# name: ESLint | ||
# runs-on: ubuntu-18.04 | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# - uses: actions/setup-node@v1 | ||
# with: | ||
# node-version: "12.x" | ||
# - name: Setup ESLint | ||
# run: | | ||
# npm install --save-dev [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] @babel/[email protected] @babel/[email protected] @babel/[email protected] @babel/[email protected] @babel/[email protected] | ||
# [ -f .eslintrc.json ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/react-redux/.eslintrc.json | ||
# [ -f .babelrc ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/react-redux/.babelrc | ||
# - name: ESLint Report | ||
# run: npx eslint . --fix | ||
# stylelint: | ||
# name: Stylelint | ||
# runs-on: ubuntu-18.04 | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# - uses: actions/setup-node@v1 | ||
# with: | ||
# node-version: "12.x" | ||
# - name: Setup Stylelint | ||
# run: | | ||
# npm install --save-dev [email protected] [email protected] [email protected] [email protected] | ||
# [ -f .stylelintrc.json ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/react-redux/.stylelintrc.json | ||
# - name: Stylelint Report | ||
# run: npx stylelint "**/*.{css,scss}" --fix | ||
# nodechecker: | ||
# name: node_modules checker | ||
# runs-on: ubuntu-18.04 | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# - name: Check node_modules existence | ||
# run: | | ||
# if [ -d "node_modules/" ]; then echo -e "\e[1;31mThe node_modules/ folder was pushed to the repo. Please remove it from the GitHub repository and try again."; echo -e "\e[1;32mYou can set up a .gitignore file with this folder included on it to prevent this from happening in the future." && exit 1; fi |
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,19 @@ | ||
name: Recent activity | ||
|
||
on: | ||
schedule: | ||
- cron: "*/5 * * * *" | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
name: Update this repo's README with recent activity | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: jamesgeorge007/github-activity-readme@master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
COMMIT_MSG: "Updated README with recent activity" | ||
MAX_LINES: 10 |
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,16 @@ | ||
name: Export Firebase Data | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 **' | ||
|
||
jobs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: GoogleCloudPlatform/github/setup-gcloud@master | ||
with: | ||
service_account_key: ${{secrets.GCP_SA_KEY}} | ||
export_default_credentials: true | ||
|
||
- run: gcloud config set project $PROJECT_ID | ||
- run: gcloud firestor export $BUCKET |
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 @@ | ||
important no:assignee language:javascript |