We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59ff574 commit 2f408ceCopy full SHA for 2f408ce
.github/workflows/ci.yml
@@ -4,6 +4,7 @@ on:
4
5
jobs:
6
test:
7
+ if: false
8
runs-on: ubuntu-latest
9
strategy:
10
matrix:
@@ -45,10 +46,13 @@ jobs:
45
46
uses: actions/setup-node@v4
47
with:
48
node-version: 22
- - name: Install dependencies and build app
49
- run: pnpm -C docs-src install && pnpm -C docs-src add github:AlexanderMac/o2diff && pnpm -C docs-src run build:prod
+ - name: CD into docs-src
50
+ run cd docs-src
51
+ - name: Install dependencies
52
+ run: pnpm i && pnpm add github:AlexanderMac/o2diff
53
+ - name: Build app
54
+ run: pnpm build:prod
55
- name: Upload demo build as artifact
- id: deployment
56
uses: actions/upload-pages-artifact@v3
57
58
path: docs-src/dist/browser/
0 commit comments