Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
with:
node-version: ${{matrix.node-version}}
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- run: pnpm install
- name: Format Code
run: pnpm run format
- name: Commit changes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ui-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
node-version: ${{matrix.node-version}}
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- run: pnpm install
- name: Run ESLint
run: pnpm run lint
- name: "Cypress Run"
Expand Down
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ export default function Home() {
}, [path]);

useEffect(() => {
generateRandomBoard(size[0], size[1])
generateRandomBoard(size[0], size[1]);
tutorialModal.onOpen();
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);
Expand Down
Loading