Skip to content

Commit

Permalink
Merge pull request #766 from ambrosus/ci/linter
Browse files Browse the repository at this point in the history
ci: add lint gh action
  • Loading branch information
ArturHoncharuk authored Nov 19, 2024
2 parents d846184 + 636eb02 commit 9cc0c1f
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
36 changes: 36 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Lint Codebase

on:
push:
branches:
- main
- dev
- stage
- redesign
pull_request:
branches:
- main
- dev
- stage
- redesign

jobs:
lint:
name: Run Lint
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: yarn

- name: Install dependencies
run: yarn install

- name: Run lint
run: yarn lint
1 change: 0 additions & 1 deletion src/navigation/stacks/Tabs/HomeStack.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ import {
CreateWalletStep1,
CreateWalletStep2
} from '@screens/CreateWallet';
import { AddressDetails } from '@screens/Address';

const Stack = createNativeStackNavigator<HomeParamsList>();
export const HomeStack = () => {
Expand Down

0 comments on commit 9cc0c1f

Please sign in to comment.