Skip to content

fix(Command): throw error when no apps are found (#626) #70

fix(Command): throw error when no apps are found (#626)

fix(Command): throw error when no apps are found (#626) #70

Workflow file for this run

name: Lint
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Installing dependencies
run: yarn
- name: Running linter
run: npx eslint --fix --max-warnings 0
- name: Committing fix
id: commit
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git commit -am "style: fix linter issues"
continue-on-error: true
- name: push
if: steps.commit.outcome != 'failure'
run: git push