Skip to content

Commit ae19a9f

Browse files
authored
chore: adds push checks for fullstack demos (#685)
Signed-off-by: Anthony D. Mays <[email protected]>
1 parent eccb09a commit ae19a9f

File tree

3 files changed

+21
-13
lines changed

3 files changed

+21
-13
lines changed

.github/workflows/check_push.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,3 +141,11 @@ jobs:
141141
- name: Build Lesson 17 with Java
142142
working-directory: ./lesson_17/bank
143143
run: ./gradlew check
144+
145+
- name: Build Fullstack Demo with Java
146+
working-directory: ./lib/java/fullstack-demo
147+
run: ./gradlew check
148+
149+
- name: Build Fullstack Demo with Node.js
150+
working-directory: ./lib/typescript/fullstack-demo
151+
run: npm ci

lib/typescript/fullstack_demo/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This project demonstrates a fully working task management app built using NextJS
66

77
## Running the app
88

9-
To run the app, copy the [.env.example](./.env.example) file as `.env` and setup the Clerk keys by setting up an account at https://clerk.dev. Once done, you can start up the local dev server with the following commands:
9+
To run the app, copy the [.env.example](./.env.example) file as `.env` and setup the Clerk keys by setting up an account at https://clerk.dev. Once done, you can start up the local dev server with the following commands:
1010

1111
```bash
1212
npm install
@@ -33,9 +33,9 @@ To deploy this app, sign up for an account on Vercel and create a project pointi
3333

3434
Here are a list of tools used to compile this demo. You can read the official documentation to learn how various aspects of the demo function.
3535

36-
* NextJS (https://nextjs.org)
37-
* Vercel (https://vercel.com)
38-
* Clerk (https://clerk.dev)
39-
* React (https://react.dev)
40-
* LowDB (https://github.com/typicode/lowdb)
41-
* Upstash Redis (https://upstash.com/docs/redis/overall/getstarted)
36+
- NextJS (https://nextjs.org)
37+
- Vercel (https://vercel.com)
38+
- Clerk (https://clerk.dev)
39+
- React (https://react.dev)
40+
- LowDB (https://github.com/typicode/lowdb)
41+
- Upstash Redis (https://upstash.com/docs/redis/overall/getstarted)

lib/typescript/fullstack_demo/tailwind.config.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
import type { Config } from "tailwindcss";
1+
import type { Config } from 'tailwindcss';
22

33
export default {
44
content: [
5-
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
6-
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
7-
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
5+
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
6+
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
7+
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
88
],
99
theme: {
1010
extend: {
1111
colors: {
12-
background: "var(--background)",
13-
foreground: "var(--foreground)",
12+
background: 'var(--background)',
13+
foreground: 'var(--foreground)',
1414
},
1515
},
1616
},

0 commit comments

Comments
 (0)