Skip to content

Commit

Permalink
package updates & minor tsup config fix
Browse files Browse the repository at this point in the history
  • Loading branch information
onderonur committed Aug 17, 2024
1 parent 8dd5dfa commit 0ae73f8
Show file tree
Hide file tree
Showing 11 changed files with 1,718 additions and 1,189 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/nextjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ concurrency:
jobs:
# Build job
build:
# Since `workflow_run` only has 3 activity types (`completed`, `requested` and `in_progress`),
# even if `Quality` workflow gets completed by failing, this workflow starts to run.
# To prevent this, we add a condition here.
# https://github.com/orgs/community/discussions/26238#discussioncomment-3250901
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -47,6 +52,11 @@ jobs:

# Deployment job
deploy:
# Since `workflow_run` only has 3 activity types (`completed`, `requested` and `in_progress`),
# even if `Quality` workflow gets completed by failing, this workflow starts to run.
# To prevent this, we add a condition here.
# https://github.com/orgs/community/discussions/26238#discussioncomment-3250901
if: ${{ github.event.workflow_run.conclusion == 'success' }}
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
Expand Down
Empty file modified .husky/pre-commit
100644 → 100755
Empty file.
14 changes: 0 additions & 14 deletions .vscode/settings.json

This file was deleted.

4 changes: 2 additions & 2 deletions apps/demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
"@repo/eslint-config": "*",
"@repo/lint-staged-config": "*",
"@repo/typescript-config": "*",
"@types/node": "^22.2.0",
"@types/node": "^22.4.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.9",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4"
}
}
1 change: 0 additions & 1 deletion apps/demo/public/next.svg

This file was deleted.

1 change: 0 additions & 1 deletion apps/demo/public/vercel.svg

This file was deleted.

Loading

0 comments on commit 0ae73f8

Please sign in to comment.