Skip to content

Commit 345db81

Browse files
authored
BREAKING CHANGE: require Node.js 18+ (#15)
* refactor: remove execall && require Node.js 18+ * 2.1.0 * Update package-lock.json+1 * CI: update node versions * CI: use npm
1 parent 71e001c commit 345db81

6 files changed

+7347
-4486
lines changed

.github/workflows/test.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
node-version: [12, 14]
9+
node-version: [ 18, 20, 22 ]
1010
steps:
1111
- name: checkout
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v4
1313
- name: setup Node.js ${{ matrix.node-version }}
14-
uses: actions/setup-node@v2
14+
uses: actions/setup-node@v4
1515
with:
1616
node-version: ${{ matrix.node-version }}
1717
- name: Install
18-
run: yarn install
18+
run: npm ci
1919
- name: Test
20-
run: yarn test
20+
run: npm test

0 commit comments

Comments
 (0)