Skip to content

Commit

Permalink
chore: explicit yarn build
Browse files Browse the repository at this point in the history
  • Loading branch information
abernier committed Jul 23, 2024
1 parent c110637 commit 18f1853
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 28,7 @@ jobs:
with:
cache: 'yarn'
- run: yarn install
- run: yarn build
- run: yarn test

build-and-release:
Expand All @@ -39,6 40,7 @@ jobs:
with:
cache: 'yarn'
- run: yarn install
- run: yarn build
- run: yarn build-storybook
# semantic-release skips not configured branches(see: release.config.js) or pull-requests
- run: yarn release
Expand Down
Binary file modified .yarn/install-state.gz
Binary file not shown.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 40,14 @@
}
},
"scripts": {
"prebuild": "rimraf dist && npm run typegen",
"build": "rollup -c && npm run copy",
"prepare": "npm run build && husky install",
"prebuild": "rimraf dist && yarn typegen",
"build": "rollup -c && yarn copy",
"prepare": "yarn build && husky install",
"eslint": "eslint --fix .",
"eslint:ci": "eslint .",
"prettier": "prettier --check .",
"prettier-fix": "prettier --write .",
"test": "npm run eslint:ci && (cd test/e2e; ./e2e.sh)",
"test": "yarn eslint:ci && (cd test/e2e; ./e2e.sh)",
"typecheck": "tsc --noEmit --emitDeclarationOnly false --strict --jsx react",
"typegen": "tsc --emitDeclarationOnly",
"storybook": "cross-env NODE_OPTIONS=\"--openssl-legacy-provider\" storybook dev -p 6006",
Expand Down

0 comments on commit 18f1853

Please sign in to comment.