Skip to content

Commit

Permalink
use pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
qichunren committed Nov 25, 2024
1 parent 34014e6 commit 7688f94
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6,139 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
bundler-cache: true

- name: Install JavaScript dependencies
run: npm ci && npm run build
run: pnpm install && pnpm run build

- name: Run tests
env:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ RUN bundle install && \
bundle exec bootsnap precompile --gemfile

# Install node modules
COPY package.json package-lock.json ./
RUN npm ci
COPY package.json pnpm-lock.json ./
RUN pnpm install

# Copy application code
COPY . .
Expand Down
Loading

0 comments on commit 7688f94

Please sign in to comment.