We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf1d664 commit eddb955Copy full SHA for eddb955
1 file changed
.github/workflows/ci.yml
@@ -18,10 +18,13 @@ jobs:
18
bun-version: latest
19
20
- name: Install D2 CLI
21
- run: curl -fsSL https://d2lang.com/install.sh | sh -s --
+ run: |
22
+ curl -fsSL https://d2lang.com/install.sh | sh -s --
23
+ echo "$HOME/.d2/bin" >> $GITHUB_PATH
24
+ d2 --version
25
26
- name: Install dependencies
- run: bun install
27
+ run: bun install --no-cache
28
29
- name: Lint 🔍
30
run: bun run lint
@@ -31,3 +34,5 @@ jobs:
31
34
32
35
- name: Build 🔧
33
36
uses: withastro/action@v5
37
+ env:
38
+ PATH: ${{ env.PATH }}:${{ env.HOME }}/.d2/bin
0 commit comments