Skip to content

Commit df98dfa

Browse files
authored
Merge pull request #17 from hamed-musallam/main
feat: custom events
2 parents ae2f16d + da86dac commit df98dfa

9 files changed

Lines changed: 451 additions & 523 deletions

File tree

.eslintrc.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,6 @@
5151
],
5252

5353
"@typescript-eslint/explicit-function-return-type":"off",
54-
"max-len":[
55-
"warn",
56-
{
57-
"code":80
58-
}
59-
],
6054
"react-hooks/rules-of-hooks":"error",
6155
"react-hooks/exhaustive-deps":"warn",
6256
"import/prefer-default-export":"off",

.github/workflows/node.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Node CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
lint:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-node@v2
13+
with:
14+
node-version: 16.x
15+
- name: Install dependencies
16+
run: npm ci
17+
- name: Run ESLint
18+
run: npm run eslint
19+
- name: Run Prettier
20+
run: npm run prettier
21+
- name: Check types
22+
run: npm run check-types

0 commit comments

Comments
 (0)