From 77cff12e2ea964d46aecb1a403598c346e986e79 Mon Sep 17 00:00:00 2001 From: Pelle Wessman Date: Fri, 8 Mar 2024 23:12:45 +0100 Subject: [PATCH] Mimic #60 and move build to lint step on CI --- .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 f1c4e93..96b37a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,6 +39,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 }} - ${{ @@ -83,9 +86,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