[READ-ONLY] Mirror of https://github.com/probablykasper/mr-tagger. Music file tagging app for Mac, Linux and Windows
audio linux macos music tagger tauri windows
0

Configure Feed

Select the types of activity you want to include in your feed.

Add gh action rust cache

Kasper (Dec 31, 2021, 5:43 PM +0100) b6958490 d49820bd

+17 -3
+16 -2
.github/workflows/test.yml
··· 5 5 - '*' 6 6 tags-ignore: 7 7 - '*' 8 + pull_request: 9 + branches: 10 + - '*' 8 11 workflow_dispatch: 9 12 10 13 env: ··· 37 40 sudo apt-get update 38 41 sudo apt-get install -y webkit2gtk-4.0 39 42 43 + - name: Rust cache 44 + uses: actions/cache@v2 45 + with: 46 + path: | 47 + ~/.cargo/bin/ 48 + ~/.cargo/registry/index/ 49 + ~/.cargo/registry/cache/ 50 + ~/.cargo/git/db/ 51 + target/ 52 + key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} 53 + 40 54 - run: npm install 41 55 42 - - run: npm run check 56 + - run: npm run build:web 43 57 44 - - run: npm run build:web 58 + - run: npm run check 45 59 46 60 - run: npm run test 47 61
+1 -1
package.json
··· 9 9 "preview": "vite preview", 10 10 "test": "cargo test --manifest-path ./src-tauri/Cargo.toml", 11 11 "format": "prettier --write --plugin-search-dir=. src *.js && eslint --fix src *.js", 12 - "check": "mkdir -p build && cargo check --manifest-path src-tauri/Cargo.toml && eslint src *.js && svelte-check" 12 + "check": "cargo check --manifest-path src-tauri/Cargo.toml && eslint src *.js && svelte-check" 13 13 }, 14 14 "devDependencies": { 15 15 "@sveltejs/vite-plugin-svelte": "1.0.0-next.33",