Skip to content

⚡ Enhance PersonalShopper to suggest augmentations based on remai… #5

⚡ Enhance PersonalShopper to suggest augmentations based on remai…

⚡ Enhance PersonalShopper to suggest augmentations based on remai… #5

Workflow file for this run

---
name: CI Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: 'package.json' # Use Node.js version from package.json (Volta)
- name: Install dependencies
run: npm install
# Disabled until having proper tests
# - name: Run tests
# run: npm test
- name: Check types
run: npm run check