/[sudobot]/trunk/.github/workflows/docs.yml
ViewVC logotype

Contents of /trunk/.github/workflows/docs.yml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 619 - (show annotations)
Thu Aug 29 12:40:27 2024 UTC (7 months ago) by rakinar2
File size: 583 byte(s)
chore: add missing files

1 name: Docs Build
2
3 on: [ push, pull_request ]
4
5 jobs:
6 build:
7 runs-on: ubuntu-latest
8
9 defaults:
10 run:
11 working-directory: ./docs
12
13 steps:
14 - name: Checkout
15 uses: actions/checkout@v4
16
17 - name: Setup Node.js environment
18 uses: actions/setup-node@v4
19 with:
20 node-version: 22
21
22 - name: Setup Bun
23 uses: oven-sh/setup-bun@v2
24 with:
25 bun-version: latest
26
27 - name: Install Dependencies
28 run: bun install -D
29
30 - name: Create a production build
31 run: bun run build

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26