Skip to content

Commit

Permalink
Merge pull request #1 from vaishnavi-3969/master
Browse files Browse the repository at this point in the history
vaishnavi-3969#60 fixed layout
  • Loading branch information
mahendrameghwal authored Oct 30, 2023
2 parents e9f2c32 + 3647db2 commit 1748080
Show file tree
Hide file tree
Showing 11 changed files with 5,153 additions and 10,485 deletions.
11 changes: 11 additions & 0 deletions .github/ISSue_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: 🐛 Bug
description: Report an issue to help improve the project.
labels: ["🛠 goal: fix", "🚦 status: awaiting triage"]
body:
- type: textarea
id: description
attributes:
label: Description
description: A brief description of the question or issue, also include what you tried and what didn't work
validations:
required: true
12 changes: 12 additions & 0 deletions .github/ISSue_TEMPLATE/feature_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: 📄 Feature Request
description: Want to add a new Feature? use this
title: "[Feat] <description>"
labels: ["📄 aspect: feature", "🚦 status: awaiting triage"]
body:
- type: textarea
id: description
attributes:
label: Description
description: A brief description of the feature.
validations:
required: true
33 changes: 33 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build and Test


on:

push:
branches: [ master ]
pull_request:
branches: [ master ]


jobs:
build_test:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x, 15.x]


steps:

- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: npm ci, build and test
run: |
npm ci
npm run build --if-present
npm test
Loading

0 comments on commit 1748080

Please sign in to comment.