chore(deps): bump the rust-updates group in /src-tauri with 5 updates #149
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Testing with Vitest' | |
on: [push, pull_request] | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
env: | |
TIPTAP_PRO_TOKEN: ${{secrets.TIPTAP_PRO_TOKEN}} | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Node.js and Install PNPM | |
uses: pnpm/action-setup@v2 | |
with: | |
version: latest | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Run SvelteKit Sync | |
run: pnpm prepare | |
- name: Run Tests | |
run: pnpm test |