From 8b5ce06aea100ddba163096752d1a10818fbbf54 Mon Sep 17 00:00:00 2001 From: Mori Bellamy Date: Wed, 13 Dec 2023 17:34:06 -0800 Subject: [PATCH] ensure compilation has succeeded for ci --- .github/workflows/node.js.yml | 2 ++ src/app.ts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index caf6ad0..664aa8f 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -23,4 +23,6 @@ jobs: node-version: ${{ matrix.node-version }} cache: 'npm' - run: npm i + - run: npx eslint src - run: npx tsc + - run: head -c 100 dist/app.js \ No newline at end of file diff --git a/src/app.ts b/src/app.ts index 11ab410..322729c 100644 --- a/src/app.ts +++ b/src/app.ts @@ -1,7 +1,7 @@ import {Octokit} from "octokit"; import {writeFile} from "fs"; import {MultiBar, Presets} from "cli-progress"; -import {number, boolean, command, flag, option, run, string} from "cmd-ts"; +import {boolean, command, flag, number, option, run, string} from "cmd-ts"; import {PaginatedGodotAssets, parse_github, ParsedGithub} from "./godot_assets";