Skip to content

Commit

Permalink
fix: PNPM version
Browse files Browse the repository at this point in the history
  • Loading branch information
janjakubnanista committed Jan 15, 2025
1 parent fa0931c commit b4e27da
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
17 changes: 11 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ executors:
- image: us-docker.pkg.dev/oplabs-tools-artifacts/images/ci-builder-rust:latest

commands:
install-dependencies:
description: Install dependencies
steps:
- run:
name: Enable corepack
command: corepack enable
- run:
name: Install dependencies
command: just deps
notify-failures-on-develop:
description: "Notify Slack"
parameters:
Expand All @@ -31,9 +40,7 @@ jobs:
executor: builder
steps:
- checkout
- run:
name: Install deps
command: just deps
- install-dependencies
- run:
name: markdown lint
command: just lint-specs-md-check
Expand All @@ -58,9 +65,7 @@ jobs:
executor: builder
steps:
- checkout
- run:
name: Install dependencies
command: just deps
- install-dependencies
- run:
name: Build
command: just build
Expand Down
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ default:

# Install required dependencies
deps:
cargo install mdbook mdbook-katex mdbook-linkcheck mdbook-mermaid
pnpm i --frozen-lockfile
cargo install mdbook mdbook-katex mdbook-linkcheck mdbook-mermaid

# Lint the workspace for all available targets
lint: lint-specs-md-check lint-specs-toc-check lint-filenames lint-links lint-specs-spelling
Expand Down

0 comments on commit b4e27da

Please sign in to comment.