Simple test project that sets up a hybrid cargo crate with a vite project

ci: install playwright and wasm-pack

Signed-off-by: Jonathan Basniak <9uknek65z@mozmail.com>

+7
+5
.tangled/workflows/ci.yml
··· 14 14 - clang 15 15 - rustc 16 16 - gcc 17 + - playwright 18 + - playwright-test 19 + - wasm-pack 17 20 18 21 steps: 19 22 - name: Install dependencies ··· 23 26 24 27 corepack enable 25 28 pnpm install --frozen-lockfile 29 + pnpm exec playwright install || true 30 + cargo install wasm-pack 26 31 27 32 - name: Build & Run tests 28 33 command: |
+2
README.md
··· 10 10 11 11 corepack enable 12 12 pnpm install 13 + 14 + pnpm exec playwright install 13 15 cargo install wasm-pack 14 16 ``` 15 17