-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (50 loc) · 1.87 KB
/
deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: 🚀 Deploy to GitHub Pages
on:
push:
branches:
- main # Voer de workflow uit bij elke push naar main
pull_request:
branches:
- main
permissions:
contents: write # Vereist om GitHub Pages te deployen
jobs:
build-and-deploy:
runs-on: ubuntu-latest # Draai de pipeline op de nieuwste Ubuntu-versie
steps:
- name: 📥 Checkout repository
uses: actions/checkout@v3
- name: 🏗️ Install Node.js
uses: actions/setup-node@v3
with:
node-version: "18" # Zorg ervoor dat de Node-versie klopt
cache: "pnpm" # Cache voor pnpm
# Installeer PNPM vóór het installeren van dependencies
- name: 📦 Install PNPM
run: npm install -g pnpm # Installeer pnpm globaal
# Cache afhankelijkheden om builds te versnellen
- name: 📦 Cache dependencies
uses: actions/cache@v3
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
# Installeer afhankelijkheden met PNPM
- 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
# Bouw het project
- name: 🔨 Build project
run: pnpm run build
# Deploy naar GitHub Pages
- name: 🚀 Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }} # Gebruik de standaard GitHub token
publish_dir: ./docs # Map waarin de build staat na 'mv build docs'
keep_files: true # Behoud bestaande bestanden zoals _redirects