Skip to content

Commit

Permalink
⬆️ dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
drom committed Dec 3, 2023
1 parent 6406960 commit c616d3f
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 19 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12, 14, 16, 18]
node-version: [16, 18, 20, 21]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm i
npm test
- name: Coveralls
uses: coverallsapp/github-action@v1.0.1
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
env:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ jobs:
runs-on: macOS-latest
strategy:
matrix:
node-version: [12, 14, 16, 18]
node-version: [16, 18, 20, 21]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
node-version: [12, 14, 16, 18]
node-version: [16, 18, 20, 21]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020-2022 WaveDrom
Copyright (c) 2020-2023 WaveDrom

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
13 changes: 5 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,15 @@
},
"dependencies": {},
"devDependencies": {
"@drom/eslint-config": "^0.10.0",
"@drom/eslint-config": "^0.12.0",
"browserify": "^17.0.0",
"chai": "^4.1.2",
"chai": "^4.3.10",
"coveralls": "^3.0.11",
"eslint": "^8.6.0",
"mocha": "^9.1.3",
"eslint": "^8.55.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint4/node8",
"parserOptions": {
"ecmaVersion": 2020
}
"extends": "@drom/eslint-config/eslint8/node12"
}
}

0 comments on commit c616d3f

Please sign in to comment.