Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 693 Bytes

File metadata and controls

47 lines (32 loc) · 693 Bytes

Dockerfile

Build

Run the command from the repo root.

docker build -t functionalscript ./docker

Run

docker run -it functionalscript

Or clean version w/o network:

docker run --rm -it --network none functionalscript

Container Commands

  • cargo test
  • npm test
  • deno task test
  • bun test

See CONTRIBUTING.md for the full list of equivalent ways to run the FunctionalScript test suite.

Codex Setup

rustup component add clippy
rustup component add rustfmt

# Install Node.js dependencies.
npm ci

# Install Rust dependencies.
cargo fetch

rustup show
node -v