build(deps-dev): bump tailwindcss from 3.4.11 to 4.0.3 #901
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
# Run Eslint and Clippy | |
name: Eslint & Clippy | |
on: [push, pull_request] | |
jobs: | |
eslint_and_clippy: | |
strategy: | |
fail-fast: true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository code | |
uses: actions/checkout@v3 | |
# Cache Rust | |
- uses: actions/cache@v3 | |
with: | |
path: ./src-tauri/target | |
key: ${{ hashFiles('./src-tauri/Cargo.lock') }} | |
# Cache Rust | |
- uses: actions/cache@v3 | |
with: | |
path: ~/.cargo | |
key: ${{ hashFiles('./src-tauri/Cargo.lock') }} | |
# Cache Node | |
- uses: actions/cache@v3 | |
with: | |
path: ./node_modules | |
key: ${{ hashFiles('./package-lock.json') }} | |
- name: Install Node.js v20 LTS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install Rust with Clippy | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt, clippy | |
- name: Install Tauri dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install javascriptcoregtk-4.1 libsoup-3.0 webkit2gtk-4.1 libayatana-appindicator3-dev -y | |
- name: Create empty 'out' directory for Tauri generate context | |
run: mkdir out | |
- name: Install node dependencies | |
run: npm install | |
- name: Run Eslint | |
run: npm run lint | |
- name: Run Clippy | |
run: npm run clippy |