Compare commits
1 commit
3b2f34952a
...
775fa1c5a5
Author | SHA1 | Date | |
---|---|---|---|
775fa1c5a5 |
1 changed files with 7 additions and 7 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue