diff options
author | 2021-11-15 16:48:12 -0800 | |
---|---|---|
committer | 2021-11-22 10:21:29 -0800 | |
commit | 6e21c9927c1413c49bf6544de5d2212417210ec7 (patch) | |
tree | 8a08b5d1ccc8606d7b43196a8c50c99838213b8d | |
parent | c3d9804e85f2bf92476d49f93891f42a5f8e1f22 (diff) | |
download | bun-6e21c9927c1413c49bf6544de5d2212417210ec7.tar.gz bun-6e21c9927c1413c49bf6544de5d2212417210ec7.tar.zst bun-6e21c9927c1413c49bf6544de5d2212417210ec7.zip |
remove workspace caching
-rw-r--r-- | .github/workflows/bun-framework-next.yml | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/.github/workflows/bun-framework-next.yml b/.github/workflows/bun-framework-next.yml index cd46a4476..8428bd722 100644 --- a/.github/workflows/bun-framework-next.yml +++ b/.github/workflows/bun-framework-next.yml @@ -30,16 +30,8 @@ jobs: with: version: 6.21.0 - - name: Cache pnpm modules - uses: actions/cache@v2 - with: - path: ~/.pnpm-store - key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} - restore-keys: | - ${{ runner.os }}- - - name: Install dependencies - run: pnpm install + run: cd packages/bun-framework-next && pnpm install - name: Test bun-framework-next run: pnpm test --filter bun-framework-next |