Skip to content

Commit

Permalink
Fix: warning error because process.env.CI=true
Browse files Browse the repository at this point in the history
  • Loading branch information
hyunji-lee99 committed Dec 24, 2023
1 parent 4277903 commit 50f1981
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- run : npm ci
- run: npm run build
- run: CI='false' npm run build
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/firebase-hosting-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm run build
- run: npm ci
- run: CI='false' npm run build
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'
Expand Down
2 changes: 1 addition & 1 deletion src/components/About/RenderContact.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Info, InfoContentDiv, InfoTitle, InfoContent, InfoContentDetail, InfoContentElementDiv} from "./CommonInfo";
import {Info, InfoContentDiv, InfoTitle } from "./CommonInfo";
import styled from "styled-components";

const ContactInfoDiv=styled.div`
Expand Down
2 changes: 1 addition & 1 deletion src/firebase.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Import the functions you need from the SDKs you need
import { initializeApp } from "firebase/app";
import { getFirestore, doc, collection, getDocs, addDoc } from "firebase/firestore";
import { getFirestore, collection, getDocs, addDoc } from "firebase/firestore";
// TODO: Add SDKs for Firebase products that you want to use
// https://firebase.google.com/docs/web/setup#available-libraries

Expand Down

0 comments on commit 50f1981

Please sign in to comment.