Thank you for reading this!
smarthr-ui
is intended to be used for SmartHR internally, but we are welcoming your contributions!
We use pnpm
for the package manager.
$ corepack enable
$ corepack prepare
$ pnpm install
$ pnpm ui test
We use conventional commit messages for standard-version
.
The SmartHR UI uses CircleCI.
- lint
- Grammar check with ESLint
- Style description check by stylelint
- TypeScript grammar check with
tsc --noEmit
- Unit test
- Unit and component testing with Vitest
- visual regression test
- Host on Netlify
- Launch the environment on Netlify for each PR so that you can check the operation without launching locally
If any of the above is missing, please correct the code.
Merging the PR will automatically build the master branch at the following URL: https://smarthr-ui.netlify.com/
The component displayed at this URL is up to date with the SmartHR UI.
reg-suit hosts the results of the image regression test in S3. To do this, we are passing AWS_ACCESS_KEY_ID
and AWS_SECRET_ACCESS_KEY
as environment variables to CircleCI.
For PR from fork repositories, security concerns have specified that CircleCI environment variables should not be passed. Therefore, in the case of PR from the fork repository, the CircleCI environment variable does not exist when the reg-suit is executed, AWS cannot be accessed, and CI fail.
For the above reasons, it doesn't matter if the reg-suit fails for a repository from a fork.
Review the PR and if there are no security issues we will run reg-suit.
# Component name
```tsx
import { ComponentName } from 'smarthr-ui'
<ComponentName />
```
## props
| Name | Required | Type | DefaultValue | Description |
| --------- | -------- | --------- | ------------------ | ------------ |
| | ✔ or - | | DefaultValue or - | |
- Required
- Required: ✔
- Not Required: -
- DefaultValue
- No Default Value: -
$ pnpm release
We use standard-version
to release npm packages.