Skip to content
This repository has been archived by the owner on Jan 14, 2025. It is now read-only.

Every next level of your life will demand a different version of you. #110

Every next level of your life will demand a different version of you.

Every next level of your life will demand a different version of you. #110

Workflow file for this run

name: Tauri Development
on:
push:
branches:
- main
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
platform: [windows-latest]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '21'
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: Install dependencies
run: npm i
- name: Run frontend
run: npm run test
- name: Run Backend
working-directory: ./src-tauri
run: cargo test