Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ jobs:
node-version: 20
- name: Install Dependencies
run: npm ci
- name: Check TypeScript Errors
run: npm run tscheck
- name: Install Playwright Browsers
run: npx playwright install --with-deps

- name: Build Project
run: npm run build
- name: Run tests
run: npm test
run: npm test
14 changes: 14 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,16 @@
"react-dom": "^19.1.0",
"react-i18next": "^15.6.0",
"react-syntax-highlighter": "^15.6.1",
"typescript": "^5.9.2",
"web-vitals": "^5.0.3"
},
"scripts": {
"start": "vite",
"build": "vite build",
"test": "vitest",
"gen": "node src/Blockly/gen.js",
"dev": "vite"
"dev": "vite",
"tscheck": "npx tsc -b --noEmit"
},
"eslintConfig": {
"extends": [
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.node.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["vite.config.ts"]
"include": ["vite.config.mts"]
}