Skip to content

Commit

Permalink
build: rm node v12/v14 (#81)
Browse files Browse the repository at this point in the history
as it brings npm < 7, which does not support workspaces.:z
  • Loading branch information
aladdin-add committed Nov 3, 2021
1 parent 208c230 commit a7b28dd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ jobs:
node-version:
- '17'
- '16'
- '14'
- '12'
os:
- ubuntu-latest
steps:
Expand All @@ -41,6 +39,8 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
- run: npm install
- run: npm install --save-dev eslint@6
- run: npm test
Expand All @@ -50,6 +50,8 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
- run: npm install
- run: npm install --save-dev eslint@7
- run: npm test

0 comments on commit a7b28dd

Please sign in to comment.