Skip to content

Commit

Permalink
Merge pull request #4 from shm11C3/develop
Browse files Browse the repository at this point in the history
fix: build error
  • Loading branch information
shm11C3 authored Aug 25, 2024
2 parents ebd12e7 + d5f7c55 commit 6ade664
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ jobs:

runs-on: ${{ matrix.platform }}
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v4

- name: setup node
Expand All @@ -30,7 +35,7 @@ jobs:
- name: install frontend dependencies
run: npm ci

- name check front end Lint
- name: check front end Lint
run: npm run lint:ci

- uses: tauri-apps/tauri-action@v0
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"tauri": "tauri",
"lint": "biome lint ./src && biome check ./src && biome format --write ./src",
"format": "biome format --write ./src && biome check ./src",
"lint:ci": "biome ci ./src && biome check ./src && biome format ./src"
"lint:ci": "biome ci ./src"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
Expand Down
2 changes: 0 additions & 2 deletions src-tauri/src/commands/hardware.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#![cfg_attr(not(debug_assertions), target_os = "windows")]

use crate::{log_debug, log_error, log_internal, log_warn};
use nvapi;
use nvapi::UtilizationDomain;
Expand Down

0 comments on commit 6ade664

Please sign in to comment.