⬆️ Bump autoprefixer from 10.4.14 to 10.4.20 #52
This file contains hidden or 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
# .github/workflows/test.yml | |
name: Test | |
on: | |
push: | |
branches: | |
- main | |
- release/** | |
pull_request: | |
branches: | |
- main | |
- release/** | |
jobs: | |
cleanliness: | |
name: cleanliness ${{ matrix.target }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- target: x86_64-apple-darwin | |
os: macos-latest | |
- target: x86_64-pc-windows-msvc | |
os: windows-latest | |
- target: x86_64-unknown-linux-musl | |
os: ubuntu-latest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Install Rust Toolchain Components | |
uses: actions-rs/[email protected] | |
with: | |
toolchain: stable | |
components: rustfmt, clippy | |
target: ${{ matrix.target }} | |
override: true | |
- name: touch dist | |
run: mkdir -p webui/dist/ && touch webui/dist/touch | |
- name: Clippy | |
run: cargo clippy | |
- name: Rustfmt | |
run: cargo fmt --all -- --check |