Skip to content
This repository was archived by the owner on May 19, 2025. It is now read-only.

Commit a516916

Browse files
committed
Remove failing unicorn tests
Also clarify module testing by removing lockfile.
1 parent 3f5901b commit a516916

File tree

6 files changed

+4
-4393
lines changed

6 files changed

+4
-4393
lines changed

.github/workflows/external.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
${{ runner.os }}-node-
7878
7979
- name: install main
80-
run: npm ci --no-audit --no-fund
80+
run: npm i --no-audit --no-fund
8181
working-directory: ./main
8282
- name: install project
8383
run: '[ -f package-lock.json ] && npm ci --force || npm install --force'

.github/workflows/npm-test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,5 @@ jobs:
2828
uses: actions/setup-node@v3
2929
with:
3030
node-version: ${{ matrix.node_version }}
31-
cache: 'npm'
32-
- run: npm ci
31+
- run: npm i
3332
- run: npm test

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
/node_modules
33
/yarn.lock
44
/.vscode
5+
package-lock.json
56

67
# Library specific ones

index.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ module.exports = {
1414
},
1515
'plugins': [
1616
'@typescript-eslint',
17-
'react-hooks',
18-
'unicorn'
17+
'react-hooks'
1918
],
2019
'extends': ['./lib/standard-eslint-ts'],
2120
'settings': {
@@ -65,8 +64,6 @@ module.exports = {
6564
'react-hooks/rules-of-hooks': 'off',
6665
'react-hooks/exhaustive-deps': 'off',
6766

68-
'unicorn/expiring-todo-comments': 'warn',
69-
7067
'@typescript-eslint/consistent-type-imports': [
7168
'error',
7269
{ 'prefer': 'type-imports', 'disallowTypeAnnotations': true }

0 commit comments

Comments
 (0)