forked from nicolasperez19/mic-master-flex
-
Notifications
You must be signed in to change notification settings - Fork 0
81 lines (64 loc) · 1.93 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
name: Deploy to GitHub Pages
on:
push:
branches: [ main ]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies with Bun
run: bun install
- name: Build the site with Bun
run: bun run build # Produces the `dist` folder
- name: List build output
run: ls -R dist # Verify if `dist` was created
- name: Upload build output as artifact
uses: actions/upload-artifact@v3
with:
name: github-pages # Artifact name expected by deploy-pages
path: dist # Upload entire dist directory
lighthouse:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Download build output artifact
uses: actions/download-artifact@v3
with:
name: github-pages
path: dist # Download into the 'dist' directory
- name: List files in current directory
run: ls -la
- name: List files in dist directory
run: ls -la dist
- name: Show lighthouserc.json
run: cat lighthouserc.json || echo "lighthouserc.json not found"
- name: Install Bun
uses: oven-sh/setup-bun@v1
- name: Install Lighthouse CI globally
run: bun install -g @lhci/[email protected]
- name: Run Lighthouse CI
run: lhci autorun --collect.staticDistDir=dist --assert.assertions.errors-in-console=warn
deploy:
needs: [build, lighthouse]
runs-on: ubuntu-latest
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4