From 8cd4b34155a40cb7d1a57d18f2f47513f5e8c609 Mon Sep 17 00:00:00 2001 From: Dario Anongba Varela Date: Wed, 14 Aug 2024 17:28:15 +0200 Subject: [PATCH] add github folder --- .github/ISSUE_TEMPLATE/bug-report.yml | 34 ++++++++++++++++++++++++ .github/workflows/ci.yml | 37 +++++++++++++++++++++++++++ package.json | 6 ++--- src/css/custom.css | 4 +-- 4 files changed, 76 insertions(+), 5 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.yml create mode 100644 .github/workflows/ci.yml diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml new file mode 100644 index 0000000..f1504cd --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -0,0 +1,34 @@ +name: Bug Report +description: Create a report to help us improve +labels: ['bug'] +body: + - type: textarea + id: issue-description + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is. + placeholder: Describe the bug here. + validations: + required: true + - type: textarea + id: issue-reproduction + attributes: + label: Steps to reproduce + description: Describe steps to reproduce the behavior. + placeholder: Steps to reproduce the bug here. + validations: + required: true + - type: textarea + id: expected-behavior + attributes: + label: Expected behavior + description: A clear and concise description of what you expected to happen. + placeholder: Expected behavior here. + validations: + required: true + - type: textarea + id: screenshots + attributes: + label: Screenshots + description: If applicable, add screenshots to help explain your problem. + placeholder: Add screenshots here. \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..af67c67 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,37 @@ +name: Lint, Prettier and Build + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + lint-and-prettier: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + + - name: Enable Corepack + run: corepack enable + + - name: Install dependencies + run: yarn install + + - name: Run ESLint + run: yarn lint + + - name: Run Prettier + run: yarn fm:check + + - name: Run build + run: yarn build diff --git a/package.json b/package.json index 458ece6..6955cf3 100644 --- a/package.json +++ b/package.json @@ -57,9 +57,9 @@ "not op_mini all" ], "development": [ - "last 3 chrome version", - "last 3 firefox version", - "last 5 safari version" + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" ] }, "packageManager": "yarn@4.4.0", diff --git a/src/css/custom.css b/src/css/custom.css index aff2162..5363d62 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -428,9 +428,8 @@ .navbar__logo { color: var(--banner-text); - height: 40px; + height: 38px; width: auto; - padding: 0 10px 0 20px; display: flex; align-items: center; justify-content: center; @@ -629,6 +628,7 @@ } /* Footer */ + .footer { font-family: Montserrat, sans-serif; }