Skip to content

Commit

Permalink
ci: drop support for non-LTS node versions (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
ungoldman committed Mar 14, 2022
1 parent d5ca41a commit 827c364
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Expand Up @@ -10,11 +10,11 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [8, 10, lts/*]
node: [lts/*]

steps:
- uses: actions/checkout@v2.4.0
- uses: actions/setup-node@v2.5.0
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm i
Expand Down

0 comments on commit 827c364

Please sign in to comment.