Skip to content

feat: add discounted price mapping field #77

feat: add discounted price mapping field

feat: add discounted price mapping field #77

Workflow file for this run

---
name: Lint
on:
pull_request:
push:
branches:
- develop
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '24'
cache: npm
- name: Install npm dependencies
run: npm ci
- name: Check formatting
run: npm run format -- --check
- name: Lint JS and CSS
run: npm run lint
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
extensions: mbstring
coverage: none
- name: Install Composer dependencies
uses: ramsey/composer-install@v4
with:
composer-options: '--prefer-dist --no-interaction'
- name: Lint PHP
run: composer run lint:php