From 84cf5a3ffeb74412fa60fa639bc034ca01913954 Mon Sep 17 00:00:00 2001 From: "heesk0223@gmail.com" Date: Mon, 1 Jun 2026 00:22:04 +0900 Subject: [PATCH] fix: add node types --- .github/workflows/ci.yml | 15 +++++++++++++-- tsconfig.json | 1 + 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aebce8c..331c2b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,13 +1,24 @@ name: CI on: - push: + pull_request: branches: - main - pull_request: + + paths-ignore: + - '**.md' + - 'docs/**' + - '.github/*.md' + + push: branches: - main + paths-ignore: + - '**.md' + - 'docs/**' + - '.github/*.md' + jobs: build: runs-on: ubuntu-latest diff --git a/tsconfig.json b/tsconfig.json index d86cde3..c03918c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,7 @@ "module": "Node16", "target": "ES2022", "lib": ["ES2022", "DOM"], + "types": ["node"], "sourceMap": true, "rootDir": "src", "strict": true /* enable all strict type-checking options */