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

Workers as ESM, remove RequireJS #11400

Merged
merged 14 commits into from
Sep 1, 2023

Update CHANGES.md

b761c61
Select commit
Failed to load commit list.
Merged

Workers as ESM, remove RequireJS #11400

Update CHANGES.md
b761c61
Select commit
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Aug 30, 2023 in 14m 6s

Build Passed

The build passed, just like the previous build.

Details

This is a normal build for the workers-as-esm branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build has four jobs, running in parallel.

Job Node.js OS State
44990.1 Coverage 18 Linux passed
44990.2 Release Tests 18 Linux passed
44990.3 Linting, Deployment 18 Linux passed
44990.4 NodeJS 16 16 Linux passed

Build Configuration

Build Option Setting
Language Node.js
Operating System Linux (Focal)
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "addons": {
    "chrome": "stable",
    "firefox": "latest"
  },
  "notifications": {
    "slack": [
]

},
"jobs": {
"include": [
{
"name": "Coverage",
"node_js": "18",
"before_script": [
"curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"",
"unzip awscliv2.zip",
"sudo ./aws/install"
],
"script": [
"./travis/coverage.sh"
]
},
{
"name": "Release Tests",
"node_js": "18",
"script": [
"./travis/test-release.sh",
"./travis/verify.sh",
"npm --silent run cloc"
]
},
{
"name": "Linting, Deployment",
"node_js": "18",
"script": [
"./travis/prepare.sh",
"npm --silent run deploy-status -- --status pending --message 'Waiting for build'",
"npm --silent run eslint",
"npm --silent run markdownlint",
"npm --silent run prettier-check",
"./travis/release.sh",
"./travis/deploy.sh"
]
},
{
"name": "NodeJS 16",
"node_js": "16",
"script": [
"npm --silent run build-release",
"./travis/verify.sh"
]
}
]
}
}