Compare commits

..

2 commits

Author SHA1 Message Date
3b2f34952a
chore(release): release v0.3.3
All checks were successful
Visitenbuch CI / test (push) Successful in 3m8s
Visitenbuch CI / release (push) Successful in 6m1s
2024-05-14 15:53:11 +02:00
fd4cb0c96f
ci: fix: use pnpm run 2024-05-14 15:52:53 +02:00

View file

@ -38,19 +38,19 @@ jobs:
cp .env.test .env
- name: 🧐 lint
run: |
npm run check
npm run lint
pnpm run check
pnpm run lint
- name: 🧪 Unit test
run: npm run test:unit
run: pnpm run test:unit
- name: 🧪 Integration test
run: |
npx prisma migrate reset --force
npm run test:integration
pnpm run test:integration
- name: 👨‍🔬 E2E test
id: e2etest
run: |
npm run build -l silent
npm run test:e2e
pnpm run build -l silent
pnpm 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: npm run build
run: pnpm run build
- name: 🐋 Build docker image
uses: https://code.thetadev.de/ThetaDev/action-kaniko@v1
with: