Skip to content

Hive fixes

Hive fixes #618

Workflow file for this run

name: CLI
on:
pull_request:
types: [opened, reopened, synchronize]
env:
cwd: ${{github.workspace}}/packages/cli
defaults:
run:
working-directory: packages/cli
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test-unit-cli:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm i
working-directory: ${{ github.workspace }}
- run: npm run test