diff --git a/.github/workflows/livestream.yml b/.github/workflows/livestream.yml index 18ebf32..dca77ac 100644 --- a/.github/workflows/livestream.yml +++ b/.github/workflows/livestream.yml @@ -15,8 +15,13 @@ jobs: with: node-version: '20' + - name: Setup pnpm + uses: pnpm/action-setup@v4 + with: + version: 9 + - name: Install dependencies - run: npm install + run: pnpm install - name: Lint code - run: npm run lint + run: pnpm lint