diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ebc26aa..45e914f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,13 +24,14 @@ jobs: cache: 'pnpm' - name: Install Dependencies - run: pnpm install + run: pnpm install --no-frozen-lockfile - name: Run Lint run: npm run lint Test: runs-on: macos-latest + needs: Lint strategy: matrix: node: [16, 18, 20] @@ -53,7 +54,7 @@ jobs: cache: 'pnpm' - name: Install Dependencies - run: pnpm install + run: pnpm install --no-frozen-lockfile - name: Setup JDK 17 uses: actions/setup-java@v3