diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3445704c..1b9007ef 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,7 +15,7 @@ jobs: - name: Install pnpm uses: pnpm/action-setup@v2.0.1 with: - version: 6.15.1 + version: 7.0.1 - name: Set node version to ${{ matrix.node_version }} uses: actions/setup-node@v2 @@ -26,8 +26,11 @@ jobs: - name: Install deps run: pnpm install - - name: Build - run: pnpm run build + - name: Lint + run: pnpm run lint-fail - name: Test - run: pnpm run test + run: pnpm run test-run + + - name: Build + run: pnpm run build