Skip to content

Commit bb40c1f

Browse files
committed
chore: update workflow
1 parent 143f55a commit bb40c1f

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/main.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,18 @@ jobs:
1616
- name: Checkout Repo
1717
uses: actions/checkout@v3
1818

19+
- name: Install dependencies
20+
run: npm ci
21+
1922
- name: Run ESLint
20-
run: npx eslint . --ext .ts
23+
run: npm run lint
2124

2225
test:
2326
strategy:
2427
fail-fast: false
2528
matrix:
2629
os: [ubuntu-latest, macos-latest, windows-latest]
27-
node: [12, 14, 16, 18, 20]
30+
node: [16, 18, 20]
2831

2932
runs-on: ${{ matrix.os }}
3033
steps:

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@batuhanw/haf",
33
"version": "0.1.3",
44
"engines": {
5-
"node": ">=10"
5+
"node": ">=16"
66
},
77
"description": "Fully typed, modern, cross-platform persistent config solution for NodeJS projects",
88
"main": "dist/index.js",

0 commit comments

Comments
 (0)