forked from danielroe/ripple-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (30 loc) · 728 Bytes
/
docs.yml
File metadata and controls
30 lines (30 loc) · 728 Bytes
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
name: Docs
on:
push:
paths:
- '.github/workflows/docs.yml'
- 'docs'
- 'packages/ripple-ui-core/**'
- 'packages/ripple-ui-forms/**'
- 'pnpm-lock.yaml'
jobs:
Docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 10.10.0
run_install: false
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install Dependencies
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
run: pnpm install --frozen-lockfile
- name: Build docs
run: pnpm run build:docs