This repository has been archived by the owner on Jan 14, 2025. It is now read-only.
Normally, I dislike playing with others as a team, but miraculously, … #119
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: 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 |