Skip to content

Commit

Permalink
feat(heap): added the first implmentation
Browse files Browse the repository at this point in the history
  • Loading branch information
khaledosama999 committed Feb 24, 2021
1 parent 57fc1eb commit 8ff2045
Show file tree
Hide file tree
Showing 7 changed files with 820 additions and 17 deletions.
18 changes: 16 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"env": {
"browser": true,
"es2021": true,
"node": true
"node": true,
"mocha": true
},
"extends": [
"airbnb-base"
Expand All @@ -16,5 +17,18 @@
"@typescript-eslint"
],
"rules": {
}
"import/extensions": "off",
"no-unused-vars": "off",
"no-shadow": "off",
"@typescript-eslint/no-shadow": ["error"],
"@typescript-eslint/no-unused-vars": "error",
"max-len":["error",{"code":120}]
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
}
}
29 changes: 29 additions & 0 deletions .github/workflow/testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name:

on:
push:
branches: [ development,master ]
pull_request:
branches: [ development, master ]

jobs:
build:

runs-on: ubuntu-latest

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

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run test

Loading

0 comments on commit 8ff2045

Please sign in to comment.