chore(deps-dev): bump @storybook/react-vite from 7.1.1 to 7.4.5 #111
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: Pull Request Events | |
on: pull_request | |
permissions: | |
contents: write | |
id-token: write | |
pull-requests: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-functional: | |
name: Functional tests | |
runs-on: ubuntu-latest | |
environment: | |
name: dev | |
steps: | |
- name: ⬇️ Set up code | |
uses: actions/checkout@v3 | |
- name: 💾 Cache firebase emulators | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.FIREBASE_EMULATORS_PATH }} | |
key: ${{ runner.os }}-firebase-emulators-${{ hashFiles('emulator-cache/**') }} | |
continue-on-error: true | |
- name: ⎔ Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
cache: npm | |
- name: Cypress run | |
uses: cypress-io/github-action@v5 | |
env: | |
VITE_QUAD_WORD: test | |
VITE_FIREBASE_CONFIG: ${{ secrets.TEST_FIREBASE_CONFIG }} | |
VITE_BUILD: development | |
with: | |
start: npm start | |
install-command: npm ci | |
browser: chrome | |
wait-on: 'http://127.0.0.1:4000' | |
wait-on-timeout: 120 | |
- name: Upload Cypress Screenshots | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: cypress-screenshots | |
path: cypress/screenshots | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: cypress-videos | |
path: cypress/videos | |
test-unit: | |
name: Unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Set up code | |
uses: actions/checkout@v3 | |
- name: ⎔ Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
cache: npm | |
- name: 📥 Download dependencies | |
run: npm ci | |
- name: 🧪 Run tests | |
run: npm test | |
test-build: | |
name: Test build | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Checkout code | |
uses: actions/checkout@v3 | |
- name: ⎔ Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
cache: npm | |
- name: 📥 Download dependencies | |
run: | | |
npm ci | |
- name: 📦 Build | |
env: | |
VITE_QUAD_WORD: test | |
VITE_FIREBASE_CONFIG: '{}' | |
run: npm run build | |
deploy-preview: | |
name: Firebase preview | |
runs-on: ubuntu-latest | |
needs: [test-functional, test-unit, test-build] | |
if: ${{ github.event.sender.type == 'User' }} | |
environment: | |
name: dev | |
steps: | |
- name: 🚀 Deploy | |
uses: agrc/firebase-website-deploy-composite-action@v1 | |
with: | |
identity-provider: ${{ secrets.IDENTITY_PROVIDER }} | |
service-account-email: ${{ secrets.SERVICE_ACCOUNT_EMAIL }} | |
project-id: ${{ secrets.PROJECT_ID }} | |
preview: yes | |
prebuild-command: | | |
cd functions | |
echo "ENVIRONMENT=stage" > .env | |
echo "AGS_HOST=https://wrimaps.at.utah.gov" >> .env | |
build-command: npm run build:stage | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
env: | |
VITE_QUAD_WORD: ${{ secrets.QUAD_WORD }} | |
VITE_FIREBASE_CONFIG: ${{ secrets.FIREBASE_CONFIG }} |