⚡ Enhance PersonalShopper to suggest augmentations based on remai… #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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 |