Skip to content

Commit 496a7ae

Browse files
committed
ci(config.yml): fix ci/cd scripts to match new folder structures
1 parent 316fc61 commit 496a7ae

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- persist_to_workspace:
6262
root: ~/repo
6363
paths:
64-
- docs
64+
- storybook
6565
deploy-library:
6666
docker:
6767
- image: 'circleci/node:latest'

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/dist
1313

1414
# storybook
15-
/docs
15+
/storybook
1616
/.firebase
1717

1818
# misc
@@ -31,4 +31,4 @@ yarn-error.log*
3131

3232
# Docs
3333
.docz
34-
/docs/build
34+
/docs

jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module.exports = {
22
setupFilesAfterEnv: ['<rootDir>/test/setup-test']
3-
}
3+
};

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@
2828
"build": "npm run build:prod",
2929
"build:dev": "cross-env NODE_ENV=development rollup -c",
3030
"build:prod": "cross-env NODE_ENV=production rollup -c",
31-
"test": "jest",
32-
"test:ci": "jest --maxWorkers=2",
33-
"test:watch": "jest --watch",
34-
"test:coverage": "jest --coverage",
31+
"test": "jest ./src",
32+
"test:ci": "jest ./src --maxWorkers=2",
33+
"test:watch": "jest ./src --watch",
34+
"test:coverage": "jest ./src --coverage",
3535
"lint": "eslint src --ext .js",
3636
"lint:fix": "npm run lint -- --fix",
3737
"semantic-release": "semantic-release",

0 commit comments

Comments
 (0)