1
0
mirror of https://github.com/kremalicious/astro-redirect-from.git synced 2024-11-22 01:47:01 +01:00

fix build command in CI

This commit is contained in:
Matthias Kretschmann 2023-09-23 23:27:56 +01:00
parent 4d33283f9f
commit cc0ba7d390
Signed by: m
GPG Key ID: 606EEEF3C479A91F
2 changed files with 2 additions and 3 deletions

View File

@ -45,9 +45,8 @@ jobs:
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- run: npm ci
- run: npm build
- run: npm run build
coverage:
runs-on: ubuntu-latest

View File

@ -12,7 +12,7 @@
"build": "rm -rf ./dist && tsc",
"start": "rm -rf ./dist && tsc --watch",
"test": "npm run lint && npm run typecheck && npm run test:unit",
"test:unit": "vitest run --coverage --config './test/vitest.config.ts'",
"test:unit": "vitest run --coverage --config ./test/vitest.config.ts",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"format": "prettier --write 'src/**/*.{ts,js,json,md}'",