From bbcbb418454e1c01f73d5592508cc6e86ddcad95 Mon Sep 17 00:00:00 2001 From: Jacob Smith <3012099+JakobJingleheimer@users.noreply.github.com> Date: Mon, 2 Dec 2024 21:33:19 +0100 Subject: [PATCH] =?UTF-8?q?fixup!:=20`npm=20run`=20=E2=86=92=20`node=20--r?= =?UTF-8?q?un`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a0ee1d3..b398c90 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,9 +22,9 @@ jobs: node-version: ${{ matrix.node-version }} cache: 'npm' - run: npm ci - - run: npm run lint - - run: npm run format - - run: npm run test:types + - run: node --run lint + - run: node --run format + - run: node --run test:types tests: strategy: @@ -54,5 +54,5 @@ jobs: env: NODE_OPTIONS="${{ matrix.node.options }}" cache: 'npm' - run: npm ci - - run: npm run test:unit - - run: npm run test:e2e + - run: node --run test:unit + - run: node --run test:e2e