Skip to content

Commit

Permalink
fix: Copy _redirects file to docs directory and update gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Ollie-nl committed Dec 24, 2024
1 parent 7746dc9 commit 180722c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,12 @@ jobs:
- name: 📦 Install dependencies
run: pnpm install # Gebruik pnpm voor snelle dependency installatie

- name: 🗂️ Copy _redirects file
run: cp public/_redirects docs/_redirects

# Draai tests voor de build (maar faal niet als tests falen)
- name: 🧪 Run Tests
run: pnpm test || echo "Tests failed, but continuing build..."
run: pnpm test

# Bouw het project
- name: 🔨 Build project
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ build/
dist/
docs/

# Houd de productie build in de docs/ map bij
!docs/

# Logfiles
npm-debug.log*
pnpm-debug.log*
Expand Down

0 comments on commit 180722c

Please sign in to comment.