Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
MIGUELez11 authored Jun 10, 2024
2 parents b0e67f2 + 6e62225 commit ca39c38
Show file tree
Hide file tree
Showing 100 changed files with 304 additions and 32,284 deletions.
57 changes: 51 additions & 6 deletions .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,63 @@ jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
- name: 🛎️ Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
- uses: actions/setup-node@v3
fetch-depth: '0'

- name: 🔧 Setup Node
uses: actions/setup-node@v3
with:
node-version: 14
- name: Install 🔧
node-version: 16
registry-url: 'https://registry.npmjs.org'

- name: 🔧 Yarn Install
working-directory: ./packages/calendars
run: yarn install --frozen-lockfile
- name: Build 🔧

- name: 🔧 Create changeset file
working-directory: ./.changeset
run: |
cat << EOF > "changes.md"
---
'@bubbles-ui/notifications': patch
'@bubbles-ui/components': patch
'@bubbles-ui/calendars': patch
'@bubbles-ui/editors': patch
'@bubbles-ui/leemons': patch
'@bubbles-ui/icons': patch
---
Versions bump
EOF
- name: 🔧 Version bump
run: yarn changeset version

- name: 🔧 Build
run: yarn build-all:no-types

- name: 🚀 Publish to NPM
run: yarn changeset publish --tag latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: docs-build # The folder the action should deploy.

- name: 🔧 Check for modified files
id: git-check
run: echo ::set-output name=modified::$(if git status | grep "nothing to commit"; then echo "false"; else echo "true"; fi)

- name: 🚀 Git push
if: steps.git-check.outputs.modified == 'true'
run: |
# setup the username and email. I tend to use 'GitHub Actions Bot' with no email by default
git config user.name "GitHub Actions Bot"
git config user.email "<>"
git add .
git commit -m 'chore: version bump'
git push origin develop
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,12 @@ docs-build
*.d.ts.map
build-storybook.log
.idea

# Coverage directory used by tools like istanbul

coverage
\*.lcov

# nyc test coverage

.nyc_output
5 changes: 0 additions & 5 deletions .idea/.gitignore

This file was deleted.

15 changes: 0 additions & 15 deletions .idea/bubbles.iml

This file was deleted.

62 changes: 0 additions & 62 deletions .idea/codeStyles/Project.xml

This file was deleted.

5 changes: 0 additions & 5 deletions .idea/codeStyles/codeStyleConfig.xml

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/inspectionProfiles/Project_Default.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/modules.xml

This file was deleted.

This file was deleted.

Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

30 changes: 11 additions & 19 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,14 @@
{
"files.exclude": {
"**/.git": false,
"**/.svn": false,
"**/.hg": false,
"**/CVS": false,
"**/.DS_Store": false,
"**/Thumbs.db": false,
},
"[javascript]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "never",
"source.fixAll": "explicit"
},
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"sonarlint.connectedMode.project": {
"connectionId": "leemons",
"projectKey": "leemonade_bubbles"
"[javascript]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "never",
"source.fixAll": "explicit"
},
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"sonarlint.connectedMode.project": {
"connectionId": "leemons",
"projectKey": "leemonade_bubbles"
}
}
Loading

0 comments on commit ca39c38

Please sign in to comment.