Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change1 #290

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
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
11 changes: 6 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,20 @@ on:

jobs:
build:
name: Build the project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup@v3
with:
node-version: '20'

- name: Install Dependencies
run: npm install

- name: Generate prisma client
run: npm run db:generate

- name: Run Build
run: npm run build
run: npm run build
42 changes: 0 additions & 42 deletions .github/workflows/deploy.yml

This file was deleted.

3 changes: 3 additions & 0 deletions apps/merchant-app/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
"use client";




import { useBalance } from "@repo/store/balance";

export default function() {
Expand Down
2 changes: 2 additions & 0 deletions apps/merchant-app/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,6 @@ module.exports = {
extend: {},
},
plugins: [],


}