Skip to content

Commit

Permalink
ci: only supported node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiTenno committed Jun 18, 2022
1 parent 5e9b5fa commit f7606ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
needs: lint
strategy:
matrix:
node-version: [12, 14, 16, 'lts/*']
node-version: [14, 16, 'lts/*']
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/regression.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [11.x, 12.x, 13.x, 14.x, 15.x]
node-version: [14, 16, 'lts/*']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Test
Expand Down

0 comments on commit f7606ba

Please sign in to comment.