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
|
cp .env.test .env
|
||||||
- name: 🧐 lint
|
- name: 🧐 lint
|
||||||
run: |
|
run: |
|
||||||
pnpm run check
|
npm run check
|
||||||
pnpm run lint
|
npm run lint
|
||||||
- name: 🧪 Unit test
|
- name: 🧪 Unit test
|
||||||
run: pnpm run test:unit
|
run: npm run test:unit
|
||||||
- name: 🧪 Integration test
|
- name: 🧪 Integration test
|
||||||
run: |
|
run: |
|
||||||
npx prisma migrate reset --force
|
npx prisma migrate reset --force
|
||||||
pnpm run test:integration
|
npm run test:integration
|
||||||
- name: 👨🔬 E2E test
|
- name: 👨🔬 E2E test
|
||||||
id: e2etest
|
id: e2etest
|
||||||
run: |
|
run: |
|
||||||
pnpm run build -l silent
|
npm run build -l silent
|
||||||
pnpm run test:e2e
|
npm run test:e2e
|
||||||
- name: 💢 Upload E2E report
|
- name: 💢 Upload E2E report
|
||||||
if: ${{ failure() && steps.e2etest.conclusion == 'failure' }}
|
if: ${{ failure() && steps.e2etest.conclusion == 'failure' }}
|
||||||
uses: https://code.forgejo.org/forgejo/upload-artifact@v4
|
uses: https://code.forgejo.org/forgejo/upload-artifact@v4
|
||||||
|
@ -72,7 +72,7 @@ jobs:
|
||||||
- name: 📦 pnpm install
|
- name: 📦 pnpm install
|
||||||
run: pnpm install
|
run: pnpm install
|
||||||
- name: ⚒️ Build web application
|
- name: ⚒️ Build web application
|
||||||
run: pnpm run build
|
run: npm run build
|
||||||
- name: 🐋 Build docker image
|
- name: 🐋 Build docker image
|
||||||
uses: https://code.thetadev.de/ThetaDev/action-kaniko@v1
|
uses: https://code.thetadev.de/ThetaDev/action-kaniko@v1
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in a new issue