summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/tools/download_chrome_canary.mjs
blob: 9f523aea2a5192306a208b7fa03eb20deea4cdee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/**
 * @license
 * Copyright 2024 Google Inc.
 * SPDX-License-Identifier: Apache-2.0
 */

/* eslint-disable no-console */

/**
 * @fileoverview Installs the latest Chrome Canary using
 * `@puppeteer/browsers` to the directory provided as the first argument
 * (default: cwd). The executable path is written to the `executablePath` output
 * param for GitHub actions.
 *
 * Examples:
 *
 * - `node tools/download_chrome_canary.mjs`
 * - `node tools/download_chrome_canary.mjs /tmp/cache`
 */
import actions from '@actions/core';

import {
  Browser,
  computeExecutablePath,
  install,
  resolveBuildId,
  detectBrowserPlatform,
} from '@puppeteer/browsers';

try {
  const cacheDir = process.argv[2] || process.cwd();
  const browser = Browser.CHROME;
  const platform = detectBrowserPlatform();
  const buildId = await resolveBuildId(browser, platform, 'canary');
  await install({
    browser,
    buildId,
    cacheDir,
  });
  const executablePath = computeExecutablePath({
    cacheDir,
    browser,
    buildId,
  });
  if (process.argv.indexOf('--shell') === -1) {
    actions.setOutput('executablePath', executablePath);
  }
  console.log(executablePath);
} catch (err) {
  actions.setFailed(`Failed to download the browser: ${err.message}`);
}