diff options
| author | nsfisis <54318333+nsfisis@users.noreply.github.com> | 2026-02-14 15:41:30 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-14 15:41:30 +0900 |
| commit | 2be44495a92dd9c1b1c65db24639eec250c510e8 (patch) | |
| tree | a6486db890a9471d569c45fffac39720fc884293 | |
| parent | 042fcb5c4eac16f18fc051f55a6c63ca9e97306b (diff) | |
| parent | dee11ee5c85cccbadd412bb9916ef63871aa3ce5 (diff) | |
| download | feedaka-2be44495a92dd9c1b1c65db24639eec250c510e8.tar.gz feedaka-2be44495a92dd9c1b1c65db24639eec250c510e8.tar.zst feedaka-2be44495a92dd9c1b1c65db24639eec250c510e8.zip | |
Merge pull request #4 from nsfisis/claude/add-typescript-ci-npm-EQxbGv0.7.0
Add typespec dependency installation to CI workflow
| -rw-r--r-- | .github/workflows/ci.yaml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b3295ff..8186ece 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -24,7 +24,9 @@ jobs: with: node-version: "22" cache: "npm" - cache-dependency-path: frontend/package-lock.json + cache-dependency-path: | + frontend/package-lock.json + typespec/package-lock.json - name: Install just uses: extractions/setup-just@v3 @@ -33,6 +35,10 @@ jobs: run: npm ci working-directory: frontend + - name: Install typespec dependencies + run: npm ci + working-directory: typespec + - name: Run check run: just check |
