wealth-calculator: update 2025 values #462
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: CI | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
validate: | |
name: Validate only | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Fetch dependencies | |
run: yarn install | |
- name: Build app | |
run: yarn build | |
dev: | |
name: Validate + DEV | |
runs-on: ubuntu-latest | |
if: startsWith(github.ref, 'refs/heads/dev/') | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Fetch dependencies | |
run: yarn install | |
- name: Build app | |
run: yarn build | |
- name: Deploy to DEV | |
env: | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
run: | | |
npx vercel --token ${{ secrets.VERCEL_TOKEN }} | |
prod: | |
name: Validate + PROD | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Fetch dependencies | |
run: yarn install | |
- name: Build app | |
run: yarn build | |
- name: Deploy to PROD | |
env: | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
run: | | |
npx vercel --prod --token ${{ secrets.VERCEL_TOKEN }} | |
- name: Redeploy DEV to have Vercel preview URL point to it | |
env: | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
run: | | |
git checkout $(git rev-parse HEAD) # to deploy to -git-head- URL | |
npx vercel --token ${{ secrets.VERCEL_TOKEN }} |