Skip to content

Commit

Permalink
Updated config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Darker21 committed Feb 21, 2022
1 parent 47cdbd2 commit d30cf83
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
- run:
name: Download cc-test-reporter
command: |
mkdir -p tmp/
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./tmp/cc-test-reporter
chmod +x ./tmp/cc-test-reporter
mkdir -p repo/tmp/
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./repo/tmp/cc-test-reporter
chmod +x ./repo/tmp/cc-test-reporter
- persist_to_workspace:
root: tmp
root: ~/repo/tmp
paths:
- cc-test-reporter
- run:
Expand All @@ -44,9 +44,6 @@ jobs:
- node/install-packages:
# If you are using yarn, change the line below from "npm" to "yarn"
pkg-manager: npm
- run:
name: List Files
command: ls -la && echo $PWD


# Below is the definition of your job to build and test your app, you can rename and customize it as you want.
Expand All @@ -55,6 +52,15 @@ jobs:
# Then run your tests!
# CircleCI will report the results back to your VCS provider.
steps:
- checkout:
path: ~/repo/tmp
- attach_workspace:
at: ~/repo/tmp
# Next, the node orb's install-packages step will install the dependencies from a package.json.
# The orb install-packages step will also automatically cache them for faster future runs.
- node/install-packages:
# If you are using yarn, change the line below from "npm" to "yarn"
pkg-manager: npm
- run:
name: list file
command: ls -la && echo $PWD
Expand Down

0 comments on commit d30cf83

Please sign in to comment.