feat: ability to provide a CommandBuilder
to .stdin(...)
(#217)
#756
This file contains 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: ci | |
on: [push, pull_request] | |
concurrency: | |
group: '${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
deno: | |
name: dax-${{ matrix.os }} | |
if: | | |
github.event_name == 'push' || | |
!startsWith(github.event.pull_request.head.label, 'dsherret:') | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install deno | |
uses: denoland/setup-deno@v1 | |
- uses: dprint/[email protected] | |
if: runner.os == 'Linux' | |
- name: lint | |
if: runner.os == 'Linux' | |
run: deno lint | |
- name: test | |
run: deno test -A |