Skip to content

Commit

Permalink
Merge branch 'vite'
Browse files Browse the repository at this point in the history
  • Loading branch information
alephtwo committed Mar 14, 2024
2 parents 2e4a9e7 + 210933a commit 39c3545
Show file tree
Hide file tree
Showing 19 changed files with 1,578 additions and 3,379 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
---
name: "Deploy GitHub Page"
on:
push:
branches:
- "main"
workflow_dispatch:
permissions:
contents: "read"
pages: "write"
id-token: "write"
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
lint:
uses: "./.github/workflows/lint.yaml"
deploy:
environment:
name: "github-pages"
url: "${{ steps.deployment.outputs.page_url }}"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- name: "Set up Node"
uses: "actions/setup-node@v4"
with:
node-version: "lts/iron"
cache: "npm"
- name: "Install dependencies"
run: "npm ci"
- name: "Build"
run: "npm run build"
- name: "Setup Pages"
uses: "actions/configure-pages@v4"
- name: "Upload artifact"
uses: "actions/upload-pages-artifact@v3"
with:
path: "./dist"
- name: "Deploy to GitHub Pages"
id: "deployment"
uses: "actions/deploy-pages@v4"
4 changes: 3 additions & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---
name: "Lint"
on: ["push"]
on:
push:
workflow_call:
jobs:
eslint:
name: "Run eslint"
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/node_modules
/public
/dist
2 changes: 1 addition & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import tseslint from "typescript-eslint";
export default tseslint.config(
eslint.configs.recommended,
{
ignores: ["public/**"],
ignores: ["dist/**"],
},
{
files: ["**/*.ts", "**/*.tsx"],
Expand Down
1 change: 1 addition & 0 deletions src/index.html → index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>
Loading

0 comments on commit 39c3545

Please sign in to comment.