Skip to content

Commit 0d4019b

Browse files
authored
Merge pull request #196 from ember-codemods/node
drop support for node < 18
2 parents f01108f + 812e134 commit 0d4019b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/ci.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ name: CI
33
on:
44
push:
55
branches:
6+
- main
67
- master
7-
- 'v*' # older version branches
8-
tags:
9-
- '*'
10-
pull_request:
11-
schedule:
12-
- cron: '0 3 * * *' # daily at 3am
8+
pull_request: {}
9+
10+
concurrency:
11+
group: ci-${{ github.head_ref || github.ref }}
12+
cancel-in-progress: true
1313

1414
jobs:
1515
test:
@@ -19,13 +19,13 @@ jobs:
1919

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

2424
steps:
25-
- uses: actions/checkout@v1
25+
- uses: actions/checkout@v4
2626

2727
- name: Use Node.js ${{ matrix.node-version }}
28-
uses: actions/setup-node@v1
28+
uses: actions/setup-node@v4
2929
with:
3030
node-version: ${{ matrix.node-version }}
3131

0 commit comments

Comments
 (0)