Skip to content
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .eslintrc.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
extends: '@adiwajshing'
parserOptions:
project: ./tsconfig.lint.json
project: ./tsconfig.json
rules:
'@typescript-eslint/no-explicit-any': 0
'@typescript-eslint/no-unused-vars': 0
'@typescript-eslint/type-annotation-spacing': 0
'@typescript-eslint/member-delimiter-style': 0
'@typescript-eslint/member-delimiter-style': 0
'@typescript-eslint/consistent-type-imports': 'error'
9 changes: 6 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 24
cache: 'npm'

- uses: actions/cache@v4
Expand All @@ -32,5 +32,8 @@ jobs:
- name: Lint
run: npm run lint

- name: Test
run: npm run test
- name: Test (PureJS Crypto)
run: npm run test:purejs-crypto

- name: Test (WebCrypto)
run: npm run test:webcrypto
15 changes: 0 additions & 15 deletions jest.config.js

This file was deleted.

Loading