Skip to content

Commit

Permalink
various maintenance (#660)
Browse files Browse the repository at this point in the history
  • Loading branch information
kethinov authored Apr 9, 2024
1 parent 936a928 commit 0490f62
Show file tree
Hide file tree
Showing 6 changed files with 1,321 additions and 829 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18.x, 20.x]
node-version: [18.x, 20.x, 21.x]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
Expand All @@ -19,7 +19,7 @@ jobs:
- run: npm run lint
- run: npm run coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
directory: "coverage"
fail_ci_if_error: true
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ npm-debug.log
node_modules
coverage
dist
test-results
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Next version

- Overhauled testing suite to use Playwright, replacing Karma.
- Put your changes here...

## 0.6.5

Expand Down
12 changes: 12 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import mocha from 'eslint-plugin-mocha'

export default [
{
plugins: {
mocha
},
rules: {
'mocha/no-exclusive-tests': 'error'
}
}
]
Loading

0 comments on commit 0490f62

Please sign in to comment.