Skip to content

Bump @vitejs/plugin-react from 4.3.3 to 4.3.4 (#233) #87

Bump @vitejs/plugin-react from 4.3.3 to 4.3.4 (#233)

Bump @vitejs/plugin-react from 4.3.3 to 4.3.4 (#233) #87

Workflow file for this run

name: Production
on:
push:
branches:
- master
concurrency: production
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install
run: npm ci
- name: Check types
run: npm run type-check
- name: Test
run: npm test
- name: Build
run: npm run build
- name: Build Functions
working-directory: functions
run: |
npm run build
- name: Deploy
run: |
npx firebase deploy --token ${{ secrets.FIREBASE_TOKEN }}