diff options
| author | 2026-01-19 00:18:50 +0800 | |
|---|---|---|
| committer | 2026-01-19 00:18:50 +0800 | |
| commit | 0e4cdb9610defe54439744fe6e8d5a79a3e02447 (patch) | |
| tree | 801a44954f88140e0a372d07da492837e91dff56 /.github/workflows | |
| parent | 4e9e10a5229d1a9336f3ba2a0962912f11b9833c (diff) | |
| download | DropOut-0e4cdb9610defe54439744fe6e8d5a79a3e02447.tar.gz DropOut-0e4cdb9610defe54439744fe6e8d5a79a3e02447.zip | |
ci(semifold): setup pnpm before versioning
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/semifold-ci.yaml | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/.github/workflows/semifold-ci.yaml b/.github/workflows/semifold-ci.yaml index 0d670c4..d42b4e1 100644 --- a/.github/workflows/semifold-ci.yaml +++ b/.github/workflows/semifold-ci.yaml @@ -75,9 +75,8 @@ jobs: cache: "pnpm" cache-dependency-path: "ui/pnpm-lock.yaml" - - name: Install Frontend Dependencies + - name: Install Node.js Dependencies run: pnpm install - working-directory: ui - name: Install Rust uses: dtolnay/rust-toolchain@stable @@ -176,6 +175,16 @@ jobs: fetch-depth: 0 - name: Setup Semifold uses: noctisynth/setup-semifold@main + - name: Install pnpm + uses: pnpm/action-setup@v4 + - name: Install Node.js + uses: actions/setup-node@v6 + with: + node-version: 22 + cache: "pnpm" + cache-dependency-path: "ui/pnpm-lock.yaml" + - name: Install Node.js Dependencies + run: pnpm install - name: Download build artifacts uses: actions/download-artifact@v6 with: |