Skip to content

FIX: Product filters and add new product modal #1177

FIX: Product filters and add new product modal

FIX: Product filters and add new product modal #1177

Workflow file for this run

name: Build, Lint and Test
on:
pull_request
jobs:
build_lint_test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
- name: Cache pnpm modules
uses: actions/cache@v3
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Install dependencies
run: pnpm install
- name: Lint code
run: pnpm lint
- name: Build email
run: pnpm email:build
- name: Build project
run: pnpm build
- name: Run tests
run: pnpm run test:ci
- name: Upload coverage reports
uses: actions/upload-artifact@v3
with:
name: coverage-report
path: coverage/