mirror of https://github.com/alibaba/ice.git
12 lines
205 B
TypeScript
12 lines
205 B
TypeScript
|
import { exec } from '@actions/exec';
|
||
|
|
||
|
const installPuppeteer = async () => {
|
||
|
await exec('node', [
|
||
|
require.resolve('puppeteer/install.js'),
|
||
|
]);
|
||
|
};
|
||
|
|
||
|
(async () => {
|
||
|
await installPuppeteer();
|
||
|
})();
|