Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ampproject/amphtml
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c8820e39c2787f4e02e873608274507a6e6cbf49
Choose a base ref
..
head repository: ampproject/amphtml
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b3cb7489cc793e3f99df6931fd1e4989a7ac7bb7
Choose a head ref
Showing with 8 additions and 5 deletions.
  1. +8 −5 .circleci/config.yml
13 changes: 8 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ version: 2.1

orbs:
browser-tools: circleci/browser-tools@1.4.8
codecov: codecov/codecov@4.2.0
codecov: codecov/codecov@5.0.0
macos: circleci/macos@2.5.2
node: circleci/node@6.3.0

@@ -65,7 +65,7 @@ executors:
resource_class: xlarge
jdk-docker-2xlarge:
docker:
- image: cimg/openjdk:21.0.4-node
- image: cimg/openjdk:21.0.5-node
resource_class: 2xlarge
macos-medium:
macos:
@@ -156,7 +156,8 @@ commands:
- save_cache:
name: '💾 Save node_modules/ Cache'
key: node-modules-cache-{{ arch }}-v3-{{ checksum "package-lock.json" }}
paths: node_modules/
paths:
- node_modules/
teardown_vm:
steps:
- persist_to_workspace:
@@ -335,7 +336,8 @@ jobs:
name: '⭐⭐⭐ All Unit Tests ⭐⭐⭐'
command: node build-system/pr-check/unit-tests.js
- codecov/upload:
file: test/coverage/lcov-unit.info
disable_search: true
files: test/coverage/lcov-unit.info
flags: unit_tests
- store_test_output
- store_filelist
@@ -350,7 +352,8 @@ jobs:
name: '⭐⭐⭐ Unminified Tests ⭐⭐⭐'
command: node build-system/pr-check/unminified-tests.js
- codecov/upload:
file: test/coverage/lcov-integration.info
disable_search: true
files: test/coverage/lcov-integration.info
flags: integration_tests
- store_test_output
- teardown_vm