Skip to content

Remove Upload Pier & Purchase ID from dropdown #3321

Remove Upload Pier & Purchase ID from dropdown

Remove Upload Pier & Purchase ID from dropdown #3321

Workflow file for this run

name: CI
on:
pull_request:
paths:
- '**.js'
- '**.jsx'
- '**.ts'
- '**.tsx'
jobs:
build:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Checkout
run: |
commits=${{ github.event.pull_request.commits }}
if [[ -n "$commits" ]]; then
# Prepare enough depth for diffs with master
git fetch --depth="$(( commits + 1 ))"
fi
- name: Install project dependencies
run: yarn --frozen-lockfile
- name: Run ESLint
run: yarn lint:ci