We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 04c78a4 + 79fce85 commit d71dde2Copy full SHA for d71dde2
.github/workflows/check.yml
@@ -19,9 +19,14 @@ jobs:
19
runs-on: ubuntu-latest
20
steps:
21
- uses: actions/checkout@v4
22
+ - uses: actions/setup-node@v4
23
+ with:
24
+ node-version: '22'
25
+ - run: npm ci
26
+ - run: npm run build
27
- name: Deploy to GH pages
28
uses: peaceiris/actions-gh-pages@v4
29
with:
30
github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: JabMap/
31
+ publish_dir: dist/
32
force_orphan: true
.gitignore
@@ -1,3 +1,5 @@
1
+src/jsmind/src/package-lock.json
2
+
3
# Logs
4
logs
5
*.log
vite.config.js
@@ -0,0 +1,5 @@
+import { defineConfig } from 'vite'
+export default defineConfig({
+ base: '',
+})
0 commit comments