Skip to content

Commit

Permalink
chore: clean up ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiTenno committed Oct 14, 2021
1 parent 6f26023 commit 2129eec
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ on:
push:
pull_request:
branches:
- master
- main

jobs:
Expand All @@ -30,7 +29,7 @@ jobs:
needs: lint
strategy:
matrix:
node-version: [11.x, 12.x, 13.x, 14.x, 15.x]
node-version: [12.x, 13.x, 14.x, 15.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -56,7 +55,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
- run: npm test
env:
CI: true
- name: Coveralls
Expand All @@ -70,7 +69,7 @@ jobs:
needs: [lint, test, coverage]
strategy:
matrix:
node-version: [15.x]
node-version: [16.x]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -81,4 +80,4 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
with:
branches: |
['master', 'main']
['master']

0 comments on commit 2129eec

Please sign in to comment.