Skip to content

Commit

Permalink
✨ ci demon hour
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyumat committed Oct 23, 2024
1 parent ce01a9b commit a0cac9e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ jobs:
- name: Build the app
env:
TMDB_API_KEY: ${{ secrets.TMDB_API_KEY }}
run: npm run build
run: |
touch .env.local
echo NODE_ENV=${{ secrets.NODE_ENV }} >> .env.local
echo TMDB_API_KEY=${{ secrets.TMDB_API_KEY }} >> .env.local
npm run build
- name: Check formatting
run: npx prettier --check . --ignore-path .gitignore
Expand Down

0 comments on commit a0cac9e

Please sign in to comment.