Skip to content

Commit

Permalink
improve a bit the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Plopix committed Jul 2, 2024
1 parent 931e7e4 commit ce15006
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 56 deletions.
51 changes: 0 additions & 51 deletions .github/workflows/gh-pages-preview.yaml

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ jobs:

- name: 🥖 Build the React App
run: |
yarn
yarn build --filter demo
pnpm install
pnpm build --filter @crystallize/demo-app
- name: 🍿 Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./apps/demo/build
publish_dir: ./apps/demo/dist
keep_files: true
1 change: 0 additions & 1 deletion .ignore

This file was deleted.

42 changes: 41 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,45 @@
"editor.detectIndentation": false,
"editor.tabSize": 4,
"editor.formatOnSave": true,
"editor.formatOnPaste": true
"editor.formatOnPaste": true,
"typescript.suggest.paths": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/node_modules": true,
"**/build": true,
"**/dist": true,
"**/.turbo": true,
"**/.cache": true
},
"files.associations": {},
"todo-tree.general.tags": ["@todo:", "@fixme:", "@bug:"],
"todo-tree.general.statusBar": "top three",
"todo-tree.tree.groupedByTag": true,
"todo-tree.general.statusBarClickBehaviour": "reveal",
"todo-tree.general.tagGroups": {
"TODOs": ["@todo:"],
"BUGs": ["@fixme:", "@bug:"]
},
"todo-tree.highlights.customHighlight": {
"TODOs": {
"icon": "flame",
"foreground": "#ff9900"
},
"BUGs": {
"icon": "bug",
"foreground": "#ff0000"
}
},
"favorites.resources": [
{
"filePath": "domain",
"group": "Default"
}
],
"favorites.sortOrder": "ASC"
}

0 comments on commit ce15006

Please sign in to comment.