Skip to content

build(deps-dev): bump @osmonauts/telescope from 0.97.0 to 0.99.0 #2125

build(deps-dev): bump @osmonauts/telescope from 0.97.0 to 0.99.0

build(deps-dev): bump @osmonauts/telescope from 0.97.0 to 0.99.0 #2125

Workflow file for this run

name: Lint
# Lint runs yarn lint over the entire DesmJS repository.
# This workflow is run on every pull request and push to main.
on:
pull_request:
push:
branches:
- main
jobs:
Lint:
name: yarn-lint
runs-on: ubuntu-latest
timeout-minutes: 6
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Compute diff 📜
uses: technote-space/[email protected]
with:
PATTERNS: |
**/*.+(js|ts|tsx)
FILES: |
package.json
yarn.lock
- name: Setup Node 👷
if: env.GIT_DIFF
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install 🔨
if: env.GIT_DIFF
run: yarn install --immutable
- name: Run lint ✅
if: env.GIT_DIFF
run: yarn lint