build(deps-dev): bump @typescript-eslint/eslint-plugin from 7.12.0 to 7.13.1 #2045
Workflow file for this run
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: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- os: ubuntu-latest | |
rust_target: x86_64-unknown-linux-gnu | |
target: linux_x86_64 | |
- os: macos-latest | |
rust_target: x86_64-apple-darwin | |
target: macos_x86_64 | |
- os: macos-latest | |
rust_target: aarch64-apple-darwin | |
target: macos_aarch64 | |
- os: windows-latest | |
rust_target: x86_64-pc-windows-msvc | |
target: windows_x86_64 | |
runs-on: ${{ matrix.platform.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set short sha | |
shell: bash | |
run: echo "SHORT_SHA=$(git rev-parse --short ${{ github.sha }})" >> $GITHUB_ENV | |
- name: setup node | |
uses: actions/setup-node@v4.0.2 | |
with: | |
node-version: 18 | |
cache: yarn | |
cache-dependency-path: yarn.lock | |
- name: Setup Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt, clippy | |
target: ${{ matrix.platform.rust_target }} | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: src-tauri/ | |
- name: install webkit2gtk (ubuntu only) | |
if: matrix.platform.os == 'ubuntu-latest' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf | |
- name: install app dependencies | |
run: yarn | |
- name: Prettier | |
run: yarn prettier | |
- name: Lint | |
run: yarn lint | |
- name: Build interface | |
run: yarn build | |
- name: fmt | |
run: cargo fmt --manifest-path src-tauri/Cargo.toml --all -- --check | |
- name: Clippy | |
run: cargo clippy --manifest-path=src-tauri/Cargo.toml --all-targets --all-features -- -D warnings | |
- uses: JonasKruckenberg/tauri-build@next | |
id: build | |
with: | |
target: ${{ matrix.platform.rust_target }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
STRONGHOLD_SALT: ${{ secrets.STRONGHOLD_SALT }} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: Sparus-${{ env.SHORT_SHA }}-${{ matrix.platform.target }}.zip | |
path: "${{ join(fromJSON(steps.build.outputs.artifacts), '\n') }}" | |
if-no-files-found: error |