Compare commits
2 commits
775fa1c5a5
...
3b2f34952a
Author | SHA1 | Date | |
---|---|---|---|
3b2f34952a | |||
fd4cb0c96f |
3 changed files with 25 additions and 8 deletions
|
@ -38,19 +38,19 @@ jobs:
|
||||||
cp .env.test .env
|
cp .env.test .env
|
||||||
- name: 🧐 lint
|
- name: 🧐 lint
|
||||||
run: |
|
run: |
|
||||||
npm run check
|
pnpm run check
|
||||||
npm run lint
|
pnpm run lint
|
||||||
- name: 🧪 Unit test
|
- name: 🧪 Unit test
|
||||||
run: npm run test:unit
|
run: pnpm run test:unit
|
||||||
- name: 🧪 Integration test
|
- name: 🧪 Integration test
|
||||||
run: |
|
run: |
|
||||||
npx prisma migrate reset --force
|
npx prisma migrate reset --force
|
||||||
npm run test:integration
|
pnpm run test:integration
|
||||||
- name: 👨🔬 E2E test
|
- name: 👨🔬 E2E test
|
||||||
id: e2etest
|
id: e2etest
|
||||||
run: |
|
run: |
|
||||||
npm run build -l silent
|
pnpm run build -l silent
|
||||||
npm run test:e2e
|
pnpm 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: npm run build
|
run: pnpm 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:
|
||||||
|
|
17
CHANGELOG.md
17
CHANGELOG.md
|
@ -3,6 +3,23 @@
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
|
||||||
|
## [v0.3.3](https://code.thetadev.de/HSA/Visitenbuch/compare/v0.3.2..v0.3.3) - 2024-05-14
|
||||||
|
|
||||||
|
### 🚀 Features
|
||||||
|
|
||||||
|
- Add E2E testing - ([8d9b75c](https://code.thetadev.de/HSA/Visitenbuch/commit/8d9b75c5fd634ae547c2690a68957264a6d447e4))
|
||||||
|
- Make page printable - ([04d9883](https://code.thetadev.de/HSA/Visitenbuch/commit/04d9883c9655379301e0c41cc55ebdaa90c68821))
|
||||||
|
|
||||||
|
### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- Update ESLint config and fix lints - ([009729b](https://code.thetadev.de/HSA/Visitenbuch/commit/009729b877e4f050fa0d1159aaa86dd43d534621))
|
||||||
|
- FilterList selection hides items from other FilterLists - ([cc1ebaf](https://code.thetadev.de/HSA/Visitenbuch/commit/cc1ebaff1a4573970f04dc44591ee7e9afb9a842))
|
||||||
|
|
||||||
|
### 🧪 Testing
|
||||||
|
|
||||||
|
- Use fixtures for E2E tests, fix wrong OIDC URL in CI - ([cbc7d65](https://code.thetadev.de/HSA/Visitenbuch/commit/cbc7d65103695565db64b4770cce71f5d37920b6))
|
||||||
|
|
||||||
|
|
||||||
## [v0.3.2](https://code.thetadev.de/HSA/Visitenbuch/compare/v0.3.1..v0.3.2) - 2024-05-13
|
## [v0.3.2](https://code.thetadev.de/HSA/Visitenbuch/compare/v0.3.1..v0.3.2) - 2024-05-13
|
||||||
|
|
||||||
### 🐛 Bug Fixes
|
### 🐛 Bug Fixes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "visitenbuch",
|
"name": "visitenbuch",
|
||||||
"version": "0.3.2",
|
"version": "0.3.3",
|
||||||
"private": true,
|
"private": true,
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Loading…
Reference in a new issue