Skip to content

Commit

Permalink
fix: lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
MehulKChaudhari committed Nov 4, 2024
1 parent 63d001f commit 5e6df34
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
cache: pnpm

- name: Install dependencies
run: pnpm install
run: pnpm install --frozen-lockfile

- name: Run ESLint
run: pnpm lint
Expand All @@ -52,7 +52,7 @@ jobs:
node-version: '18'

- name: Install dependencies
run: pnpm install
run: pnpm install --frozen-lockfile

- name: Run tests
run: pnpm test
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import './App.css';

function App() {
const App = () => {
return (
<>
<h1>Real Dev Sqaud</h1>
</>
);
}
};

export default App;
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ export default defineConfig({
setupFiles: './tests/setup.ts',
include: ['tests/**/*.{test,spec}.{js,ts,jsx,tsx}'],
},
});
});

0 comments on commit 5e6df34

Please sign in to comment.