Skip to content

Improve capability to install skills from a local file or directory #2

Improve capability to install skills from a local file or directory

Improve capability to install skills from a local file or directory #2

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm install --no-audit --no-fund
- run: npm run build
- run: npm test
image:
runs-on: ubuntu-latest
needs: lint-test
steps:
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- name: Build (multi-arch, no push)
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/arm64
push: false
tags: vibepod/skills-engine:ci