Skip to content

Commit

Permalink
Merge pull request #1711 from hjdivad/hjdivad/bump-node
Browse files Browse the repository at this point in the history
Bump node to active (12 -> 14)
  • Loading branch information
hjdivad committed Jan 27, 2023
2 parents 2797095 + be51c5a commit 1c2f94d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 20 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Expand Up @@ -5,7 +5,7 @@ on:
pull_request:
push:
branches:
master
- master
tags:
- '*'

Expand Down Expand Up @@ -35,7 +35,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x' # min node version
node-version: '14.x' # min node version
- name: yarn install
run: yarn --frozen-lockfile --install
- name: test
Expand All @@ -49,7 +49,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x' # min node version
node-version: '14.x' # min node version
- name: yarn install
run: yarn --frozen-lockfile --install
- name: test
Expand All @@ -69,7 +69,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x' # min node version
node-version: '14.x' # min node version
- name: yarn install
run: yarn --frozen-lockfile --install
- name: test:performance-app
Expand All @@ -82,7 +82,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [12.x, 14.x, 16.x] # Active and Current LTS
node: [14.x, 16.x, 18.x] # Active and Current LTS
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand All @@ -105,7 +105,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16.x'
node-version: '18.x'
- name: yarn install
run: yarn --frozen-lockfile --install
- name: try ${{matrix.try-scenario}}
Expand All @@ -119,7 +119,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '14.x' # preferred node version
node-version: '16.x' # preferred node version
- name: yarn install
run: yarn --frozen-lockfile --install
- name: test
Expand Down
16 changes: 3 additions & 13 deletions README.md
Expand Up @@ -779,19 +779,9 @@ this.store.findRecord('com.example.bookstore.book', 1, { url: '/book/from/surpri

## Requirements

ember-m3 supports three Ember.js and Ember Data versions

- The [latest release](https://emberjs.com/releases/release/)
- The [previous release](https://emberjs.com/releases/release/)
- The current LTS version

As of 30 April 2020 this means:

- 3.18.x (the latest release)
- 3.17.x (the previous release)
- 3.16.x (the current LTS)

On the build side, an [active version of node](https://nodejs.org/en/about/releases/) is required.
* Ember >= 3.16.x < 4.x
* Ember Data >= 3.16.x < 4.x
* Node >= 14.x (i.e. an [active version](https://nodejs.org/en/about/releases/))

## Utilizing less of EmberData

Expand Down

0 comments on commit 1c2f94d

Please sign in to comment.