Skip to content

[#187364685] Seller can view all products and a single product #319

[#187364685] Seller can view all products and a single product

[#187364685] Seller can view all products and a single product #319

Workflow file for this run

name: CI for e-commerce-fn bit-crafter platform
on:
push:
branches: ['develop']
pull_request:
branches: ['develop']
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm ci
- run: npm run test --if-present
- run: npm run lint --if-present
- run: npm run build --if-present
- run: npm run test:ci --if-present