-
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(app): remove questions for firebase config (it is loaded through bin script on first app start) * feat(app): update to firebase v9 (modules) * feat(app): update to reactfire v4 (support for firebase v9) * feat(app): update functions to firebase-admin v10 (modules) * feat(app): material-ui v5 (styling move to emotion) * feat(app): notistack v2 * feat(app): switch to `ProjectCard` (uses material-ui Card) with created at timestamp in place of `ProjectTile` * feat(app): switch `firebase-messaging-sw.js` to use newest firebase SDK and built in Firebase Hosting Init (meaning configs no longer need to be changed in SW file) * feat(app): add clear messaging to CI for case of missing secrets/variables * fix(app): correctly point to emulators within UI job in CI workflow
- Loading branch information
1 parent
498dc65
commit 623cb33
Showing
174 changed files
with
4,448 additions
and
3,580 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 |
---|---|---|
|
@@ -3,35 +3,28 @@ name: NPM Package Publish | |
on: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
- next | ||
|
||
concurrency: | ||
group: publish-${{ github.ref }} | ||
|
||
env: | ||
NODE_VERSION: 14.x | ||
|
||
jobs: | ||
publish-npm: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v2.4.0 | ||
|
||
- name: Use Node 14 | ||
uses: actions/setup-node@v2.4.1 | ||
- name: Use Node ${{ env.NODE_VERSION }} | ||
uses: actions/setup-node@v2.5.0 | ||
with: | ||
node-version: 14 | ||
node-version: ${{ env.NODE_VERSION }} | ||
registry-url: https://registry.npmjs.org/ | ||
|
||
- name: Get yarn cache | ||
id: yarn-cache | ||
run: echo "::set-output name=dir::$(yarn cache dir)" | ||
|
||
- uses: actions/[email protected] | ||
with: | ||
path: ${{ steps.yarn-cache.outputs.dir }} | ||
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }} | ||
cache: 'yarn' | ||
|
||
- name: Install Dependencies | ||
env: | ||
|
@@ -91,4 +84,4 @@ jobs: | |
tag_name: v${{ steps.publish.outputs.version }} | ||
release_name: v${{ steps.publish.outputs.version }} | ||
draft: false | ||
prerelease: false | ||
prerelease: false |
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 |
---|---|---|
|
@@ -2,6 +2,10 @@ name: Verify | |
|
||
on: [pull_request] | ||
|
||
concurrency: | ||
group: verify-${{ github.head_ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
|
@@ -10,28 +14,14 @@ jobs: | |
matrix: | ||
node-version: [12.x, 14.x] | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v2.4.0 | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v2.4.1 | ||
- name: Use Node ${{ matrix.node-version }} | ||
uses: actions/setup-node@v2.5.0 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Get yarn cache | ||
id: yarn-cache | ||
run: echo "::set-output name=dir::$(yarn cache dir)" | ||
|
||
# Setup dependency caching | ||
- uses: actions/[email protected] | ||
with: | ||
path: ${{ steps.yarn-cache.outputs.dir }} | ||
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }} | ||
cache: 'yarn' | ||
|
||
- name: Install Dependencies | ||
env: | ||
|
53 changes: 0 additions & 53 deletions
53
examples/react-firebase-redux/src/routes/Account/components/AccountEditor/AccountEditor.js
This file was deleted.
Oops, something went wrong.
10 changes: 6 additions & 4 deletions
10
examples/react-firebase-redux/src/routes/Account/components/AccountEditor/AccountEditor.jsx
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
12 changes: 0 additions & 12 deletions
12
...ples/react-firebase-redux/src/routes/Account/components/AccountForm/AccountForm.styles.js
This file was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.