feat: displays id and bar code of each product at category details dialog #35
Workflow file for this run
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 | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
workflow_dispatch: | |
jobs: | |
ci: | |
name: CI | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Read .nvmrc | |
run: echo "NVMRC=$(cat .nvmrc)" >> $GITHUB_OUTPUT | |
id: nvm | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '${{ steps.nvm.outputs.NVMRC }}' | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Run type-check | |
run: yarn type-check | |
- name: Run linter | |
run: echo "yarn lint" | |
# DEPENDENCY ANALISYS npm audit --production npm outdated | |
# SEC CHECKS | |
# UNITY TESTS/INTEGRATION TESTS | |
# SONAR | |
# https://coderabbit.ai/#pricing | |
# PREVIEW BUILD |