diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index e6dfd6e..7dc226c 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -38,19 +38,19 @@ jobs: cp .env.test .env - name: ๐Ÿง lint run: | - pnpm run check - pnpm run lint + npm run check + npm run lint - name: ๐Ÿงช Unit test - run: pnpm run test:unit + run: npm run test:unit - name: ๐Ÿงช Integration test run: | npx prisma migrate reset --force - pnpm run test:integration + npm run test:integration - name: ๐Ÿ‘จโ€๐Ÿ”ฌ E2E test id: e2etest run: | - pnpm run build -l silent - pnpm run test:e2e + npm run build -l silent + npm run test:e2e - name: ๐Ÿ’ข Upload E2E report if: ${{ failure() && steps.e2etest.conclusion == 'failure' }} uses: https://code.forgejo.org/forgejo/upload-artifact@v4 @@ -72,7 +72,7 @@ jobs: - name: ๐Ÿ“ฆ pnpm install run: pnpm install - name: โš’๏ธ Build web application - run: pnpm run build + run: npm run build - name: ๐Ÿ‹ Build docker image uses: https://code.thetadev.de/ThetaDev/action-kaniko@v1 with: