api: v1.16.24 #93
Workflow file for this run
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: Release Events (Developer) | |
on: | |
release: | |
types: | |
- published | |
defaults: | |
run: | |
working-directory: src/developer | |
permissions: | |
contents: write | |
id-token: write | |
pull-requests: write | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
test-unit: | |
name: 🧪 Unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Set up code | |
uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
- name: ⎔ Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: npm | |
cache-dependency-path: src/developer/package-lock.json | |
- name: 📥 Download dependencies | |
run: npm ci | |
- name: 📥 Download dependencies | |
run: npm ci | |
working-directory: src/developer/functions | |
- name: 🧪 Run tests | |
run: npm test | |
deploy-prod: | |
name: 🚀 Production deployment | |
if: ${{ startsWith(github.ref, 'refs/tags/developer') }} | |
runs-on: ubuntu-latest | |
needs: [test-unit] | |
environment: | |
name: prod | |
steps: | |
- name: ⬇️ Set up code | |
uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
- name: ⎔ Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: npm | |
cache-dependency-path: src/developer/package-lock.json | |
- name: 📥 Download dependencies | |
shell: bash | |
run: npm ci | |
- name: 🏗 Run build command | |
shell: bash | |
run: npm run build | |
env: | |
VITE_FIREBASE_CONFIG: ${{ secrets.FIREBASE_CONFIG }} | |
VITE_API_EXPLORER_URL: ${{ vars.API_EXPLORER_URL }} | |
- name: 🔢 Get firebase version | |
id: cache-settings | |
run: | | |
echo "firebase-tools=$(npm list -s --depth=0 | grep firebase-tools | tail -n 1 | sed 's/.*@//g')" >> GITHUB_OUTPUT | |
- name: 🪣 Cache firebase | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/firebase | |
key: ${{ runner.os }}-firebase-${{ steps.cache-settings.outputs.firebase-tools }} | |
- name: 🗝️ Authenticate to Google Cloud | |
id: auth | |
uses: google-github-actions/auth@v2 | |
with: | |
access_token_scopes: "email, openid, https://www.googleapis.com/auth/cloud-platform, https://www.googleapis.com/auth/firebase" | |
workload_identity_provider: ${{ secrets.IDENTITY_PROVIDER }} | |
service_account: ${{ secrets.SERVICE_ACCOUNT_EMAIL }} | |
create_credentials_file: true | |
- name: 📨 Create function envs | |
shell: bash | |
run: | | |
touch ./functions/.env | |
echo "REDIS_HOST=${{ secrets.REDIS_HOST }}" >> ./functions/.env | |
- name: 🚀 Firebase deploy | |
shell: bash | |
run: npx firebase-tools deploy --project ${{ secrets.PROJECT_ID }} |