From 0dc83ca030a87672ddc7f02bbc16656fa40df19b Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Thu, 17 Oct 2024 22:33:21 +0100 Subject: [PATCH] ci: remove compatibility tests --- .github/workflows/test.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ebb13dd..8e7dca0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,36 +10,6 @@ on: - main jobs: - compatibility: - runs-on: ${{ matrix.os }} - strategy: - matrix: - nuxt: ["2.13", "2.14"] - os: [windows-latest, ubuntu-latest] - - steps: - - uses: actions/checkout@v3 - - - run: corepack enable - - - uses: actions/setup-node@v3 - with: - node-version: 20 - cache: "pnpm" - - - name: Install dependencies - run: pnpm install --frozen-lockfile - - - name: Add nuxt - run: pnpm i nuxt@${{ matrix.nuxt }} - working-directory: packages/nuxt-typed-vuex - - - name: Build - run: pnpm build - - - name: Test - run: pnpm test - latest: runs-on: ubuntu-latest