ice/scripts/puppeteer.ts

12 lines
205 B
TypeScript

import { exec } from '@actions/exec';
const installPuppeteer = async () => {
await exec('node', [
require.resolve('puppeteer/install.js'),
]);
};
(async () => {
await installPuppeteer();
})();