Skip to content
This repository has been archived by the owner on Apr 23, 2024. It is now read-only.

Commit

Permalink
Fix script builder
Browse files Browse the repository at this point in the history
  • Loading branch information
andrglo committed Apr 16, 2023
1 parent 8645f14 commit ad4f7e8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .circleci/config.yml
Expand Up @@ -10,23 +10,23 @@ jobs:
steps:
- checkout
- restore_cache:
name: Restore Yarn Package Cache
name: Restore npm Package Cache
keys:
- yarn-packages-{{ checksum "yarn.lock" }}
- npm-packages-{{ checksum "npm.lock" }}
- run:
name: Install dependencies
command: |
yarn install --frozen-lockfile
npm install
- save_cache:
name: Save Yarn Package Cache
key: yarn-packages-{{ checksum "yarn.lock" }}
name: Save npm Package Cache
key: npm-packages-{{ checksum "npm.lock" }}
paths:
- ~/.cache/yarn
- ~/.cache/npm
- run:
name: Tests
command: |
yarn test
yarn test:report:coverage
npm run test
npm run test:report:coverage
- persist_to_workspace:
root: ~/repo
paths: .
Expand Down

0 comments on commit ad4f7e8

Please sign in to comment.