Skip to content

Commit 6a2c2fe

Browse files
committed
Solution
1 parent 3fd8d93 commit 6a2c2fe

5 files changed

Lines changed: 1551 additions & 86 deletions

File tree

.eslintrc.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ module.exports = {
44
jest: true
55
},
66
rules: {
7-
'no-proto': 0,
8-
strict: 0,
9-
'max-len': 0,
7+
'no-proto': 0
108
},
119
plugins: ['jest']
1210
};
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Test
2+
3+
on:
4+
pull_request:
5+
branches: [ master ]
6+
7+
jobs:
8+
build:
9+
10+
runs-on: ubuntu-latest
11+
12+
strategy:
13+
matrix:
14+
node-version: [20.x]
15+
16+
steps:
17+
- uses: actions/checkout@v2
18+
- name: Use Node.js ${{ matrix.node-version }}
19+
uses: actions/setup-node@v1
20+
with:
21+
node-version: ${{ matrix.node-version }}
22+
- run: npm install
23+
- run: npm test

0 commit comments

Comments
 (0)