Skip to content

build(deps): bump @cosmjs/utils from 0.30.1 to 0.31.0 #2124

build(deps): bump @cosmjs/utils from 0.30.1 to 0.31.0

build(deps): bump @cosmjs/utils from 0.30.1 to 0.31.0 #2124

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