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

Feature/issue 75 develop a page for creating new product tour items #108

Merged
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
406f916
Issue 75: resolve warnings related to demodata for list item
SimerdeepSinghGrewal Jul 21, 2024
a445c4f
Issue 75: remove isRequired from all propTypes
SimerdeepSinghGrewal Jul 22, 2024
97ccbb6
Issue 75: add homePageTempelate to home.jsx
SimerdeepSinghGrewal Jul 24, 2024
9e2a24d
Merge branch 'develop' into feature/Issue-75-Develop-a-page-for-creat…
SimerdeepSinghGrewal Jul 24, 2024
4542876
Issue 75: update leftmenu navigate
SimerdeepSinghGrewal Jul 25, 2024
f1c2364
Merge branch 'feature/Issue-75-Develop-a-page-for-creating-new-produc…
SimerdeepSinghGrewal Jul 25, 2024
cd217bf
Issue 75: change svg icon and use var colors
SimerdeepSinghGrewal Jul 27, 2024
02e08f7
Issue75: update theme and update listitem to use theme
SimerdeepSinghGrewal Jul 30, 2024
e979942
Issue 75: update App.jsx
SimerdeepSinghGrewal Aug 1, 2024
15adcad
Merge branch 'develop' into feature/Issue-75-Develop-a-page-for-creat…
uparkalau Aug 3, 2024
6fcf50e
Merge branch 'develop' into feature/Issue-75-Develop-a-page-for-creat…
SimerdeepSinghGrewal Aug 6, 2024
480ac33
Merge branch 'feature/Issue-75-Develop-a-page-for-creating-new-produc…
SimerdeepSinghGrewal Aug 6, 2024
a423b86
Issue 75: update Home.jsx from develop, changed tourdefaultpage butto…
SimerdeepSinghGrewal Aug 9, 2024
629cda4
Issue 75: add components to TourComponents folder
SimerdeepSinghGrewal Aug 9, 2024
76645ec
Merge branch 'develop' of https://github.com/bluewave-labs/bluewave-o…
SimerdeepSinghGrewal Aug 9, 2024
163fdd1
Merge branch 'develop' into feature/Issue-75-Develop-a-page-for-creat…
SimerdeepSinghGrewal Aug 12, 2024
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
Prev Previous commit
Next Next commit
…nboarding into feature/Issue-75-Develop-a-page-for-creating-new-product-tour-items
SimerdeepSinghGrewal committed Aug 9, 2024
commit 76645ec675b63065ade372920095abc4cf309683
18 changes: 8 additions & 10 deletions .coderabbit.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
language: "en-US"
language: "en-CA"
tone_instructions: "His palms are sweaty, knees weak, arms are heavy There’s vomit on his sweater already, mom’s spaghetti"
early_access: false

reviews:
profile: "chill"
request_changes_workflow: false
high_level_summary: true
poem: true
review_status: true
collapse_walkthrough: false
high_level_summary: false
poem: false
review_status: false

auto_review:
enabled: true
drafts: false
comment_on_pr: true
short_review: true

chat:
auto_reply: true
auto_reply: false

61 changes: 61 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: Node.js CI

on:
push:
branches: ["develop", "master"]
pull_request:
branches: ["develop", "master"]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]

steps:
- uses: actions/checkout@v4

- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'

- name: Install dependencies for backend
working-directory: ./backend
run: |
if [ -f package-lock.json ]; then
npm ci
else
npm install
fi

- name: Install dependencies for frontend
working-directory: ./frontend
run: |
if [ -f package-lock.json ]; then
npm ci
else
npm install
fi

- name: Build backend
working-directory: ./backend
run: npm run build --if-present

- name: Build frontend
working-directory: ./frontend
run: npm run build --if-present

# Uncomment the following lines to run tests
# - name: Run tests for backend
# working-directory: ./backend
# run: npm test

- name: Run tests for frontend
working-directory: ./frontend
run: npm test

- name: Run Docker container
run: docker-compose up --build -d
5 changes: 5 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Security Policy

If you find a vulnerability, send it to [email protected]

Please do not create an issue for security vulnerabilities.
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.