File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree File renamed without changes.
Original file line number Diff line number Diff line change 2929 run : yarn lint
3030 - name : Build
3131 run : yarn build
32+
3233 commitlint :
3334 if : ${{ github.event_name == 'pull_request' }}
3435 name : Lint commit messages
Original file line number Diff line number Diff line change 33
44jobs :
55 chromatic_deployment :
6- name : Build
6+ name : Deploy storybook to chromatic
77 runs-on : ubuntu-latest
88 steps :
99 - uses : actions/checkout@v4
Original file line number Diff line number Diff line change 5656 - name : Install dependencies
5757 if : steps.cache.outputs.cache-hit != 'true'
5858 run : yarn install --frozen-lockfile
59+ - name : Build
60+ run : yarn build
5961 - name : Release
6062 env :
6163 GITHUB_TOKEN : ${{ secrets.BOT_TOKEN }}
6567 GIT_COMMITTER_EMAIL : ${{ secrets.BUMP_GIT_EMAIL }}
6668 NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
6769 run : yarn semantic-release
70+
6871 sync_main_to_beta :
6972 if : ${{ github.ref == 'refs/heads/main' }}
7073 name : Sync branch `main` to `beta` (fast-forward enabled)
7881 git_committer_name : ${{ secrets.BUMP_GIT_NAME }}
7982 git_committer_email : ${{ secrets.BUMP_GIT_EMAIL }}
8083 github_token : ${{ secrets.GH_TOKEN }}
84+
8185 sync_beta_to_next :
8286 if : ${{ github.ref == 'refs/heads/beta' }}
8387 name : Sync branch `beta` to `next` (fast-forward enabled)
9296 git_committer_name : ${{ secrets.BUMP_GIT_NAME }}
9397 git_committer_email : ${{ secrets.BUMP_GIT_EMAIL }}
9498 github_token : ${{ secrets.GH_TOKEN }}
99+
95100 sync_beta_to_updates :
96101 if : ${{ github.ref == 'refs/heads/beta' }}
97102 name : Sync branch `beta` to `updates` (fast-forward enabled)
File renamed without changes.
Original file line number Diff line number Diff line change 2626 " dist" ,
2727 " src"
2828 ],
29- "main" : " ./dist/index.umd.js " ,
30- "module" : " ./dist/index.mjs " ,
29+ "main" : " ./dist/index.umd.cjs " ,
30+ "module" : " ./dist/index.js " ,
3131 "types" : " ./dist/index.d.ts" ,
3232 "exports" : {
3333 "." : {
34- "import" : " ./dist/index.mjs " ,
35- "require" : " ./dist/index.mjs "
34+ "import" : " ./dist/index.js " ,
35+ "require" : " ./dist/index.umd.cjs "
3636 },
3737 "./styles" : {
3838 "default" : " ./dist/style.css"
File renamed without changes.
You can’t perform that action at this time.
0 commit comments