Bump svelte from 5.0.0-next.115 to 5.0.0-next.133 in /site #50
Workflow file for this run
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
name: Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
evaluator: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
components: clippy, rustfmt | |
override: true | |
profile: minimal | |
toolchain: nightly-2024-04-27 | |
- uses: Swatinem/rust-cache@v2 | |
- run: | | |
cd evaluator | |
cargo fmt --all -- --check | |
cargo clippy | |
cargo run --release | |
site: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
cd site | |
npm ci | |
npm run format | |
npm run check | |
npm run lint | |
npm run build |