This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
chore(deps-dev): bump the storybook group with 10 updates (#1868) #2034
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
on: | |
push: | |
branches: [main] | |
env: | |
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Use Node.js 22.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn | |
- name: Execute unit tests | |
run: yarn test | |
- name: Run Drizzle migrate | |
run: | | |
yarn db:push | |
env: | |
DATABASE_URL: '${{ secrets.DATABASE_URL }}' | |
- name: Build project | |
run: yarn build | |
env: | |
AUTH_GITHUB_ID: '${{ secrets.AUTH_GITHUB_ID }}' | |
AUTH_GITHUB_SECRET: '${{ secrets.AUTH_GITHUB_SECRET }}' | |
AUTH_SECRET: '${{ secrets.AUTH_SECRET }}' | |
DATABASE_URL: '${{ secrets.DATABASE_URL }}' | |
VITE_API_ENDPOINT: '/api/graphql' |