Skip to content

sync: main to staging #3061

sync: main to staging

sync: main to staging #3061

Workflow file for this run

name: ESLint Widget
on:
pull_request:
paths:
- 'packages/widget/**'
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'yarn'
cache-dependency-path: yarn.lock
- name: Install dependencies
run: YARN_ENABLE_SCRIPTS=false yarn install --immutable
working-directory: packages/widget
- name: Run ESLint
run: yarn lint
working-directory: packages/widget