diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f6484686..e8b76fdf 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,15 +21,16 @@ jobs: strategy: matrix: os: [ubuntu, windows, macos] - cache: [cache, no-cache] + cache: [no-cache] packager: [bun, npm, yarn] exclude: - # npm isn't particularly faster with a cache - - cache: cache - packager: npm # Bun isn't supported on Windows (yet) - os: windows packager: bun + include: + # Only Ubuntu is fast with caches + - os: ubuntu + cache: cache runs-on: ${{ matrix.os }}-latest steps: - name: 🏗 Setup repo