resolve Required error in machine create command #262
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: Pull request | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - next | |
| - alpha | |
| - canary | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Deno | |
| uses: denoland/setup-deno@v1 | |
| with: | |
| deno-version: 1.38.5 | |
| - name: Check types | |
| run: deno check mod.ts | |
| - name: Lint | |
| run: deno lint | |
| - name: Format | |
| run: deno fmt --check | |
| - name: Test | |
| run: deno task test | |
| - name: Ensure output directories exist | |
| run: mkdir -p bin/macos bin/macos-arm bin/linux bin/windows | |
| - name: Build | |
| run: deno task compile |