Skip to content

Commit

Permalink
ci: 🐛 add pnpm to workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
lloydrichards committed Nov 17, 2023
1 parent 018cd17 commit 6afa204
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@ jobs:
with:
node-version: 18

- run: pnpm install --frozen-lockfile
- uses: pnpm/action-setup@v2
with:
version: 8

- run: pnpm install --frozen-lockfile
- run: pnpm lint

verify-types:
Expand All @@ -28,8 +31,11 @@ jobs:
with:
node-version: 18

- run: pnpm install --frozen-lockfile
- uses: pnpm/action-setup@v2
with:
version: 8

- run: pnpm install --frozen-lockfile
- run: pnpm type-check

build:
Expand All @@ -41,6 +47,9 @@ jobs:
with:
node-version: 18

- run: pnpm install --frozen-lockfile
- uses: pnpm/action-setup@v2
with:
version: 8

- run: pnpm install --frozen-lockfile
- run: pnpm build

1 comment on commit 6afa204

@vercel
Copy link

@vercel vercel bot commented on 6afa204 Nov 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.