diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5c039f8..72ecbf2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,18 +11,25 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + + - uses: pnpm/action-setup@v3 + with: + version: 8 + - uses: actions/setup-node@v4 with: node-version: 20 cache: 'pnpm' - - uses: pnpm/action-setup@v3 - with: - version: 8 - run_install: true + + - name: install + run: pnpm install + - name: lint run: pnpm run lint + - name: test run: pnpm run test:ci + - name: coverage uses: codecov/codecov-action@v4 with: