Skip to content

Commit

Permalink
feat(navbar): implement navbar (#44)
Browse files Browse the repository at this point in the history
-implement reusable navbar component

[Delivers #21]
  • Loading branch information
jkarenzi authored and Dawaic6 committed Jun 27, 2024
1 parent 4c0c5b6 commit 238ffd1
Show file tree
Hide file tree
Showing 19 changed files with 283 additions and 573 deletions.
1 change: 0 additions & 1 deletion .env.example

This file was deleted.

8 changes: 7 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,16 @@ module.exports = {
'import/no-extraneous-dependencies': 0,
'import/extensions': 0,
'react/require-default-props': 0,
'react/self-closing-comp': 0,
'no-param-reassign': [
'error',
{ props: true, ignorePropertyModificationsFor: ['state'] },
],
},
ignorePatterns: ['dist/**/*', 'postcss.config.js', 'tailwind.config.js'],
ignorePatterns: [
'dist//*',
'postcss.config.js',
'tailwind.config.js',
'vite.config.ts',
],
};
6 changes: 2 additions & 4 deletions .github/workflows/application.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,15 @@
name: CI for ecomm-project for Dynamite

on:
push:
branches: ['develop']
pull_request:
branches: ['develop']

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -30,3 +26,5 @@ jobs:
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
env:
VITE_BASE_URL: ${{ secrets.VITE_BASE_URL }}
Loading

0 comments on commit 238ffd1

Please sign in to comment.