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

All of you at the farm who looked down on us just because it wasn’t c… #233

All of you at the farm who looked down on us just because it wasn’t c…

All of you at the farm who looked down on us just because it wasn’t c… #233

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