forked from nagoya-caravan/frontend
-
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 branch 'develop' of https://github.com/taku10101/2023-nagoyaCar…
…avn-frontend- into develop
- Loading branch information
Showing
41 changed files
with
3,702 additions
and
170 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,7 @@ | ||
VITE_FIREBASE_API_KEY=AIzaSyC0YuZym1rPtz65BADS4Q64cJZwav__VMM | ||
VITE_FIREBASE_AUTH_DOMAIN=geek-nagoyacaravan.firebaseapp.com | ||
VITE_FIREBASE_PROJECT_ID=geek-nagoyacaravan | ||
VITE_FIREBASE_STORAGE_BUCKET=geek-nagoyacaravan.appspot.com | ||
VITE_FIREBASE_MESSAGING_SENDER_ID=147326111447 | ||
VITE_FIREBASE_APP_ID=1:147326111447:web:de5680dd4e21f09c3d2a92 | ||
VITE_FIREBASE_MEASUREMENT_ID=G-XLHRT6SZ6T |
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,33 @@ | ||
name: edit manifest | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
- feature/#5 | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
id-token: write | ||
contents: read | ||
steps: | ||
- name: checkout manifest repository | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: nagoya-caravan/hazakura-k8s | ||
ref: main | ||
token: ${{ secrets.GIT_TOKEN }} | ||
|
||
- name: edit manifest | ||
run: | | ||
yq -i '.spec.template.spec.initContainers[1].env[0].value = "${{ github.sha }}"' ./frontend/frontend.yml | ||
- name: push | ||
run: | | ||
git config user.name githubActions | ||
git config user.email [email protected] | ||
git add . | ||
git commit --author=. -m "update src" | ||
git push |
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,18 @@ | ||
name: vitest | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '20.x' | ||
- run: npm ci | ||
- run: npm run build | ||
- run: npm test |
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.