Skip to content

Commit

Permalink
Merge pull request #196 from ember-codemods/node
Browse files Browse the repository at this point in the history
drop support for node < 18
  • Loading branch information
mansona authored Oct 1, 2024
2 parents f01108f + 812e134 commit 0d4019b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ name: CI
on:
push:
branches:
- main
- master
- 'v*' # older version branches
tags:
- '*'
pull_request:
schedule:
- cron: '0 3 * * *' # daily at 3am
pull_request: {}

concurrency:
group: ci-${{ github.head_ref || github.ref }}
cancel-in-progress: true

jobs:
test:
Expand All @@ -19,13 +19,13 @@ jobs:

strategy:
matrix:
node-version: [10.x, 12.x, 13.x]
node-version: [18.x, 20.x, 22.x]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand Down

0 comments on commit 0d4019b

Please sign in to comment.