Skip to content

Commit

Permalink
Merge pull request #458 from brown-ccv/feat-v3.4
Browse files Browse the repository at this point in the history
feat: v3.4 Release
  • Loading branch information
RobertGemmaJr authored May 7, 2024
2 parents e25b9e7 + 053012e commit 85fca30
Show file tree
Hide file tree
Showing 19 changed files with 896 additions and 835 deletions.
1 change: 0 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ module.exports = {
plugins: ["react"],
rules: {
"no-unused-vars": "warn",
"react/prop-types": "off", // TODO @brown-ccv #223: App prop validation, remove this rule
"import/order": "warn",
},
settings: {
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
build_and_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm install && npm run build:firebase
- uses: actions/checkout@v4
- run: npm ci && npm run build:firebase
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/firebase-hosting-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,17 @@

name: Deploy to Firebase Hosting on PR
"on": pull_request
permissions:
checks: write
contents: read
pull-requests: write
jobs:
build_and_preview:
if: "${{ github.event.pull_request.head.repo.full_name == github.repository }}"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm install && npm run build:firebase
- uses: actions/checkout@v4
- run: npm ci && npm run build:firebase
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18.20.0
v20.12.2
1 change: 0 additions & 1 deletion Brewfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Brewfile for installing Honeycomb prerequisites
# Visit https://brown-ccv.github.io/honeycomb-docs/docs/quick_start for info

brew "git"
cask "github"
brew "openjdk" # NOTE @brown-ccv: This will install Python as a dependency
Expand Down
1 change: 0 additions & 1 deletion env/.env.clinic
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
IMAGE_INLINE_SIZE_LIMIT=0
REACT_APP_USE_EEG="true"
REACT_APP_USE_PHOTODIODE="true"
REACT_APP_VOLUME="true"
12 changes: 6 additions & 6 deletions env/.env.firebase
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
REACT_APP_FIREBASE="true"
REACT_APP_apiKey="AIzaSyB6C2nVXk__dqxdyyROFEC-ue50O_OsjTE"
REACT_APP_authDomain="ccv-honeycomb.firebaseapp.com"
REACT_APP_projectId="ccv-honeycomb"
REACT_APP_storageBucket="ccv-honeycomb.appspot.com"
REACT_APP_messagingSenderId="449496296276"
REACT_APP_appId="1:449496296276:web:0479c82b8b068ca9e6b6c1"
REACT_APP_API_KEY="AIzaSyB6C2nVXk__dqxdyyROFEC-ue50O_OsjTE"
REACT_APP_AUTH_DOMAIN="ccv-honeycomb.firebaseapp.com"
REACT_APP_PROJECT_ID="ccv-honeycomb"
REACT_APP_STORAGE_BUCKET="ccv-honeycomb.appspot.com"
REACT_APP_MESSAGING_SENDER_ID="449496296276"
REACT_APP_APP_ID="1:449496296276:web:0479c82b8b068ca9e6b6c1"
2 changes: 1 addition & 1 deletion env/.env.home
Original file line number Diff line number Diff line change
@@ -1 +1 @@
IMAGE_INLINE_SIZE_LIMIT=0

2 changes: 1 addition & 1 deletion env/.env.turk-prolific
Original file line number Diff line number Diff line change
@@ -1 +1 @@
IMAGE_INLINE_SIZE_LIMIT=0

1 change: 0 additions & 1 deletion env/.env.video
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
IMAGE_INLINE_SIZE_LIMIT=0
REACT_APP_VIDEO="true"
Loading

0 comments on commit 85fca30

Please sign in to comment.