Skip to content

feat: add min version if mutable #223

feat: add min version if mutable

feat: add min version if mutable #223

Workflow file for this run

name: Build and Test
on: [push, workflow_dispatch]
env:
node_version: 20.x
jobs:
build:
name: 🛠️ Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: ⚙️ Set up Node.js ${{ env.node_version }}
uses: actions/setup-node@v2
with:
node-version: ${{ env.node_version }}
- name: 🔧 Install dependencies
run: npm ci
- name: 🏗️ Build
run: npm run build
- name: 🧪 Run tests
run: npm test
- name: 📦 Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: cli-files-dist
path: ./dist