From 5c60276747e3a3dd401c59db72775f51733ebc1c Mon Sep 17 00:00:00 2001 From: yosuke ota Date: Mon, 6 Feb 2023 14:30:59 +0900 Subject: [PATCH] fix: ci workflow --- .github/workflows/CI.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 9ba0f70..6c4dcbe 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -38,6 +38,9 @@ jobs: - name: โ–ถ๏ธ Run lint script run: npm run lint + - name: ๐Ÿ— Build + run: npm run build + test: name: ๐Ÿงช Test (Node@${{ matrix.node }} - ESLint@${{ matrix.eslint }} - ${{ @@ -85,9 +88,6 @@ jobs: - name: ๐Ÿ“ฅ Install ESLint v${{ matrix.eslint }} run: npm install --save-dev eslint@${{ matrix.eslint }} - - name: ๐Ÿ— Build - run: npm run build - - name: โ–ถ๏ธ Run test script run: npm run test