Skip to content

Commit

Permalink
ci(main.yml): removed node version 10 and added npm install
Browse files Browse the repository at this point in the history
  • Loading branch information
niloysikdar committed Jan 1, 2022
1 parent c795989 commit aa2a626
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x]
node-version: [12.x, 14.x, 15.x]
os: [ubuntu-latest, windows-latest, macos-latest]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

Expand All @@ -23,7 +23,7 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm install
- run: npm run lint
- run: npm run prettier:check
- run: npm run test --if-present
Expand All @@ -39,7 +39,7 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm install
- run: npm run build
- run: npm run semantic-release
env:
Expand Down

0 comments on commit aa2a626

Please sign in to comment.