diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f72ddd3..8848cb1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,10 @@ name: "CI" on: - - pull_request + push: + branches: + - "master" + pull_request: jobs: build: @@ -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: diff --git a/spec/lib/ember_cli/assets/asset_map_spec.rb b/spec/lib/ember_cli/assets/asset_map_spec.rb index aa42f4f..b9234c7 100644 --- a/spec/lib/ember_cli/assets/asset_map_spec.rb +++ b/spec/lib/ember_cli/assets/asset_map_spec.rb @@ -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", }, @@ -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", },