Skip to content

chore: Update lerna-lite to 2.0 #2005

chore: Update lerna-lite to 2.0

chore: Update lerna-lite to 2.0 #2005

Workflow file for this run

name: Lint
on:
pull_request:
paths:
- ".eslint*"
- .prettier*"
- "**/*.js"
- "**/*.md"
- "**/*.json"
- "**/*.yml"
- "**/*.yaml"
push:
paths:
- ".eslint*"
- .prettier*"
- "**/*.js"
- "**/*.md"
- "**/*.json"
- "**/*.yml"
- "**/*.yaml"
branches:
- main
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: yarn
- name: Restore CSpell cache
uses: actions/cache@v3
with:
key: cspell-cache-${{ runner.os }}-lint-${{ hashFiles('**/*.ts', '**/*.md') }}
path: |
.cspellcache
restore-keys: |
cspell-cache-${{ runner.os }}-lint-
cspell-cache-${{ runner.os }}-
- run: yarn
- run: yarn run lint-ci