Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
name: "CI"

on:
- pull_request
push:
branches:
- "master"
pull_request:

jobs:
build:
Expand All @@ -10,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["2.7", "3.0", "3.1"]
ruby: ["2.7", "3.0", "3.1", "3.2"]
rails: ["6.1", "7.0"]

env:
Expand Down
4 changes: 2 additions & 2 deletions spec/lib/ember_cli/assets/asset_map_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
it "includes the most recent javascript build artifacts" do
asset_map = {
"assets" => {
"not-a-match" => {},
"not-a-match" => nil,
"bar.js" => "bar-abc123.js",
"vendor.js" => "vendor-abc123.js",
},
Expand Down Expand Up @@ -42,7 +42,7 @@
it "includes the most recent stylesheet build artifacts" do
asset_map = {
"assets" => {
"not-a-match" => {},
"not-a-match" => nil,
"bar.css" => "bar-abc123.css",
"vendor.css" => "vendor-abc123.css",
},
Expand Down