From 53c48f72acb58968ecbd11b5798358271db0354d Mon Sep 17 00:00:00 2001 From: Chung-il Jung Date: Sat, 31 Aug 2024 16:40:14 +0900 Subject: [PATCH] fix: ci npm -> bun --- .github/workflows/ci-workflow.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml index 7658859..9c34724 100644 --- a/.github/workflows/ci-workflow.yml +++ b/.github/workflows/ci-workflow.yml @@ -12,10 +12,10 @@ jobs: - uses: actions/checkout@v3 - name: Install dependencies - run: npm install + run: bun install - name: Check typescript - run: npm run type:check + run: bun run compile - name: Check eslint - run: npm run lint + run: bun run lint