Skip to content

Commit

Permalink
build: drop support for node 10, 12
Browse files Browse the repository at this point in the history
  • Loading branch information
mazinsw committed Feb 3, 2023
1 parent 62b49ee commit 1d46dfa
Show file tree
Hide file tree
Showing 3 changed files with 528 additions and 957 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '14.x'
node-version: '16.x'
- run: yarn
- run: yarn style:check

Expand All @@ -20,7 +20,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '14.x'
node-version: '16.x'
- run: yarn
- run: yarn lint

Expand All @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '10', '12', '14', '16' ]
node: [ '14', '16', '18' ]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
Expand All @@ -46,7 +46,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '14.x'
node-version: '16.x'
- run: yarn
- run: yarn build
- uses: JS-DevTools/npm-publish@v1
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "GrandChef Team <desenvolvimento@grandchef.com.br>",
"license": "MIT",
"engines": {
"node": ">= 10"
"node": ">= 14"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -34,14 +34,14 @@
"tslib": "^2.5.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/jest": "^29.4.0",
"@types/node": "^12.12.5",
"@types/pngjs": "^6.0.1",
"@types/w3c-web-usb": "1.0.6",
"jest": "^27.5.1",
"jest": "^29.4.1",
"prettier": "^2.8.3",
"rimraf": "^3.0.0",
"ts-jest": "^27.1.5",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
Expand Down
Loading

0 comments on commit 1d46dfa

Please sign in to comment.