Skip to content

Create CODEOWNERS

Create CODEOWNERS #117

Workflow file for this run

name: Disploy CLI Tests
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build_bot:
name: Build example framework bot using the CLI on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install node.js v18
uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
- name: Install dependencies
run: yarn --immutable
- name: Build dependencies
run: yarn build --filter=@disploy/framework-example
- name: Build the example bot
run: yarn workspace @disploy/framework-example disploy build --skip-prebuild