diff options
| -rw-r--r-- | .gitea/workflows/ci.yml | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 352379b..e06db1a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -16,5 +16,7 @@ jobs:          uses: actions/setup-node@v4          with:            node-version: 22 -      - run: npm ci -      - run: npm run check +      - name: Install dependencies +        run: npm ci +      - name: Run checks +        run: npm run check  | 
