From f658dc5bd7deff7ab8a4bfa9ccb65a6540175be2 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Thu, 6 Jan 2022 08:27:25 -0500 Subject: [PATCH 1/2] ci: use NPM cache in check-dist (#393) --- .github/workflows/check-dist.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml index f03f47c48..8132985aa 100644 --- a/.github/workflows/check-dist.yml +++ b/.github/workflows/check-dist.yml @@ -24,9 +24,10 @@ jobs: - uses: actions/checkout@v2 - name: Set Node.js 12.x - uses: actions/setup-node@v1 + uses: actions/setup-node@v2 with: node-version: 12.x + cache: npm - name: Install dependencies run: npm ci From f099707f6e7a91b89cdebdeca599fc76cc8bf088 Mon Sep 17 00:00:00 2001 From: Meng Ye <4025839+jk2K@users.noreply.github.com> Date: Tue, 11 Jan 2022 18:06:36 +0800 Subject: [PATCH 2/2] fix tsc build error for @actions/http-client (#402) --- tsconfig.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 234fd9cb9..8405b0a1f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,9 +2,6 @@ "compilerOptions": { "target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */ "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ - "lib": [ - "es6" - ], "outDir": "./lib", /* Redirect output structure to the directory. */ "rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ "sourceMap": true,