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