Skip to content

Commit

Permalink
ci: don't cache deps
Browse files Browse the repository at this point in the history
  • Loading branch information
slavik-chapelskyi committed Nov 15, 2023
1 parent 62ca393 commit 87d8ff2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 1 addition & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,8 @@ commands:
steps:
- node/install-packages:
pkg-manager: yarn
cache-version: v1-all
cache-only-lockfile: true
with-cache: false
app-dir: ~/repo
override-ci-command: yarn install --pure-lockfile --no-progress

jobs:
build:
Expand Down
1 change: 1 addition & 0 deletions benchmark.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import benny from 'benny';
// eslint-disable-next-line no-restricted-imports
import {orderBy as orderByOriginal} from 'natural-orderby';
import {orderBy as orderByOptimized} from './lib/index.js';

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
".circleci/config.yml": ".husky/validate-circleci-config.sh"
},
"prettier": "@shelf/prettier-config",
"dependencies": {
"natural-orderby": "3.0.2"
},
"devDependencies": {
"@shelf/eslint-config": "3.10.0",
"@shelf/prettier-config": "1.0.0",
Expand All @@ -55,8 +58,5 @@
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"natural-orderby": "3.0.2"
}
}

0 comments on commit 87d8ff2

Please sign in to comment.