Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated node 12 to node 14 in ci.yml github action #43

Merged
merged 4 commits into from
May 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ on:
jobs:
test:
name: Run Tests
runs-on: ubuntu-18.04
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Use Node 12
uses: actions/setup-node@v2-beta
- name: Use Node 14
uses: actions/setup-node@v3
with:
node-version: 12.x
node-version: 14.x

- name: Node Modules Cache
uses: actions/cache@v2
Expand All @@ -33,7 +33,7 @@ jobs:

test-ember-try:
name: Run Tests
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
strategy:
matrix:
ember-version:
Expand All @@ -52,10 +52,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Use Node 12
uses: actions/setup-node@v2-beta
- name: Use Node 14
uses: actions/setup-node@v3
with:
node-version: 12.x
node-version: 14.x

- name: Node Modules Cache
uses: actions/cache@v2
Expand Down