fix: recursive free item in pricing rule #380
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: Lint | |
on: | |
push: | |
branches: [$default-branch] | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
workflow_dispatch: | |
jobs: | |
setup_and_lint: | |
runs-on: macos-latest | |
steps: | |
- name: Setup node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18.19.0' | |
- name: Set yarn version | |
run: yarn set version 1.22.18 | |
- name: Checkout Books | |
uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: yarn | |
- name: Lint | |
run: yarn lint | |
- name: Check Formatting | |
run: yarn prettier --check . |