Skip to content

fix: read version from package.json, add CI workflow #3

fix: read version from package.json, add CI workflow

fix: read version from package.json, add CI workflow #3

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install dependencies
working-directory: packages/cli
run: npm install
- name: Build
working-directory: packages/cli
run: npm run build