Skip to content

Commit

Permalink
fixup CI for linting and building
Browse files Browse the repository at this point in the history
  • Loading branch information
skykanin committed Dec 10, 2024
1 parent 003beba commit 69b007f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/build-and-lint-on-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,16 @@ jobs:
node-version: 20
cache: npm

- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
version: 9

- name: Install dependencies
run: npm install
run: pnpm install

- name: Build application
run: npm run build
run: pnpm run build

- name: Check for ESLint warnings and errors
run: npm run lint
run: pnpm run lint

0 comments on commit 69b007f

Please sign in to comment.