fix: getMyArticles (#330) #82
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
name: deploy to prod | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
prod: | |
name: 'prod' | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v4 | |
- name: set frontend env | |
run: mkdir -p src/environments && touch src/environments/environment.ts && echo "${{ secrets.ENV_PROD }}" >> src/environments/environment.prod.ts | |
- name: update node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
cache: 'npm' | |
- name: install dependencies | |
run: npm ci | |
- name: lint | |
run: npm run lint | |
- name: build | |
run: npm run build -- --configuration production | |
- name: install dependencies in functions | |
run: cd functions && npm ci | |
- name: lint | |
run: npm run lint | |
# TODO: テストが整ったら入れる | |
# - name: test | |
# run: npm run test | |
- name: deploy to firebase | |
uses: w9jds/firebase-action@v13.22.1 | |
with: | |
args: deploy | |
env: | |
GCP_SA_KEY: ${{ secrets.GCP_SA_KEY_PROD }} | |
PROJECT_ID: prod |