Skip to content

Commit

Permalink
BREAKING CHANGE: require Node.js 18+ (#15)
Browse files Browse the repository at this point in the history
* refactor: remove execall && require Node.js 18+

* 2.1.0

* Update package-lock.json+1

* CI: update node versions

* CI: use npm
  • Loading branch information
azu authored Aug 3, 2024
1 parent 71e001c commit 345db81
Show file tree
Hide file tree
Showing 6 changed files with 7,347 additions and 4,486 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12, 14]
node-version: [ 18, 20, 22 ]
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn install
run: npm ci
- name: Test
run: yarn test
run: npm test
Loading

0 comments on commit 345db81

Please sign in to comment.