build(deps): bump postcss from 8.4.23 to 8.4.31 #72
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: 'test-on-pr' | |
on: [pull_request] | |
jobs: | |
test-tauri: | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: 🔄 Sync node version | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "lts/*" | |
cache: "yarn" | |
- name: ⏬ Install Rust stable | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
profile: minimal | |
toolchain: stable | |
- name: ⏬ Install Ubuntu dependencies | |
if: matrix.platform == 'ubuntu-20.04' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf | |
- name: 📥 Install Yarn Dependencies | |
run: yarn install | |
- name: 🔨 Build | |
uses: tauri-apps/tauri-action@v0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: 🔄 Rename soundcoremanager.exe | |
if: matrix.platform == 'windows-latest' | |
run: ren src-tauri\target\release\deps\soundcoremanager.exe SoundcoreManager-${{ matrix.platform }}-${{ env.SHORT_SHA }}.exe | |
- name: ⏫ Upload Build Artifact | |
if: matrix.platform == 'windows-latest' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: SoundcoreManager-${{ matrix.platform }}.exe | |
path: src-tauri\target\release\deps\SoundcoreManager-${{ matrix.platform }}-${{ env.SHORT_SHA }}.exe |