Skip to content

Bump svelte from 5.0.0-next.115 to 5.0.0-next.133 in /site #50

Bump svelte from 5.0.0-next.115 to 5.0.0-next.133 in /site

Bump svelte from 5.0.0-next.115 to 5.0.0-next.133 in /site #50

Workflow file for this run

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