From 44405263228df0ad870a33f3a0232b6cfc61882d Mon Sep 17 00:00:00 2001 From: Stojan Dimitrovski Date: Sun, 12 May 2024 19:39:17 +0200 Subject: [PATCH] ci: move `ci.yml` to correct dir --- .github/{ => workflows}/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename .github/{ => workflows}/ci.yml (82%) diff --git a/.github/ci.yml b/.github/workflows/ci.yml similarity index 82% rename from .github/ci.yml rename to .github/workflows/ci.yml index 0f1f986..738a5ed 100644 --- a/.github/ci.yml +++ b/.github/workflows/ci.yml @@ -20,10 +20,10 @@ jobs: npm ci - run: | - npm lint + npm run lint - run: | - npm build + npm run build - run: | - npm test + npm run test