# Cross-platform set of build steps for building esy projects

steps:
  - script: npm install -g esy@0.5.8
    displayName: 'npm install -g esy@0.5.8'
  - script: esy install
    displayName: 'esy install'
  - script: esy build
    displayName: 'esy build'
  - script: esy @test install
    displayName: 'esy @test install'
  - script: esy @test run
    displayName: 'esy @test run'
