Report IO Errors, forbid binary or large files #44
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 | |
- release | |
- release-candidate | |
- ci | |
pull_request: | |
permissions: read-all | |
env: | |
CARGO_INCREMENTAL: 0 | |
CARGO_PROFILE_DEV_DEBUG: 0 | |
jobs: | |
check-dist-up-to-date: | |
name: Check that webapp was compiled | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 21 | |
- name: Remove old version of comiled and bundled JS | |
shell: bash | |
run: rm -rv webapp/dist | |
- name: install frontend dependencies | |
run: npm clean-install | |
- name: build | |
run: npm run build | |
- name: Check for uncommitted changes | |
shell: bash | |
run: | | |
git add -N . # `git diff` ignores added files without this | |
if git diff --stat --exit-code; then | |
echo "OK, building the webapp did not cause any changes." | |
else | |
echo | |
echo 'Updates to the webapp were not bundled to webapp/dist/.' | |
echo 'Please run:' | |
echo ' npm clean-install && npm run build' | |
exit 1 | |
fi | |
clippy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@1482605bfc5719782e1267fd0c0cc350fe7646b8 | |
with: | |
toolchain: 1.76 | |
components: clippy | |
- name: install dependencies (ubuntu + Tauri only) | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf | |
- name: Clippy | |
run: cargo clippy --workspace --all-targets --verbose |