Skip to content

Commit

Permalink
Chore/bump libs (#27)
Browse files Browse the repository at this point in the history
* ci: upgrade actions

* chore: bump libs

* chore: remove old option

* chore: patch

* fix: use eslint 8 in pipeline
  • Loading branch information
jkoenig134 authored Oct 8, 2024
1 parent bda6f0f commit 19493b9
Show file tree
Hide file tree
Showing 5 changed files with 182 additions and 253 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
contents: read
id-token: write
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: current
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: current
- run: npm ci
- run: npm i eslint typescript
- run: npm i eslint@8 typescript
- run: npm test
- run: npx better-npm-audit audit
2 changes: 0 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,6 @@ module.exports = {
"@typescript-eslint/require-await": "error",
"no-useless-constructor": "off",
"@typescript-eslint/no-useless-constructor": "error",
quotes: "off",
"@typescript-eslint/quotes": ["error", "double", { avoidEscape: true }],
"@typescript-eslint/explicit-module-boundary-types": [
"error",
{
Expand Down
Loading

0 comments on commit 19493b9

Please sign in to comment.