Skip to content

aicmd 2.0 based on ollama #37

aicmd 2.0 based on ollama

aicmd 2.0 based on ollama #37

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
os:
- ubuntu
- windows
node-version:
- '16.x'
- '22.x'
name: build
runs-on: ${{ matrix.os }}-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: install dependencies
run: npm ci
- name: run build
run: npm run build
- name: run lint
run: npm run lint