From ef78805a1cb116b214743e5a16f6c905724ea01d Mon Sep 17 00:00:00 2001 From: Samuel Attard Date: Wed, 8 Nov 2017 16:55:24 +1300 Subject: [PATCH] Generate API and typescript file as artifact on CircleCI to make verifying changes easier --- .circleci/config.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index edfb1c23154..08d46c1c660 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -280,10 +280,17 @@ jobs: else echo 'Skipping verify ffmpeg on release build' fi + - run: + name: Generate Typescript Definitions + command: npm run create-typescript-definitions - store_test_results: path: junit - store_artifacts: path: junit + - store_artifacts: + path: out/electron.d.ts + - store_artifacts: + path: out/electron-api.json workflows: version: 2