Skip to content

Feature/add module products #19

Feature/add module products

Feature/add module products #19

Workflow file for this run

name: Code quality and formatting
on:
push:
pull_request:
jobs:
quality:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Install dependencies
run: npm ci
- name: Run Turbo Lint
run: npm run lint
- name: Build project
run: npm run build