Skip to content

Commit ccb9ee9

Browse files
committed
fix build and add verbatim syntax
1 parent d5bf009 commit ccb9ee9

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,6 @@ jobs:
4141

4242
- name: Check Code formatting
4343
run: bun run format:check
44+
45+
- name: Run tests
46+
run: bun run test:run

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
"format": "concurrently \"npm:format:spotless\" \"npm:format:prettier\"",
2121
"format:check:spotless": "./example/IonicCapOneSignal/android/gradlew spotlessCheck",
2222
"format:check:prettier": "prettier --check \"**/*.{ts,tsx}\" --ignore-path .gitignore",
23-
"format:check": "concurrently \"npm:format:check:spotless\" \"npm:format:check:prettier\""
23+
"format:check": "concurrently \"npm:format:check:spotless\" \"npm:format:check:prettier\"",
24+
"test": "vitest",
25+
"test:run": "vitest run"
2426
},
2527
"keywords": [
2628
"push",

0 commit comments

Comments
 (0)