Skip to content

add miro cli test

add miro cli test #1

Workflow file for this run

name: Test
on:
push:
branches:
- '*'
- '!main'
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 180
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: '.node-version'
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install
- name: Test
run: pnpm t
- name: Build
run: pnpm build