From d602b71dba17904386f561183e3f8d9ab9f3fdb7 Mon Sep 17 00:00:00 2001 From: Anton Stjernquist Date: Wed, 7 Sep 2022 23:42:29 +0200 Subject: [PATCH 1/3] feat: create pre-release of main branch --- .github/workflows/prerelease.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 787c107d..11bf41eb 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -3,7 +3,7 @@ on: workflow_dispatch: push: branches: - - master + - main - develop jobs: From fdc15e012c66060321652adfc32ae82f74eae257 Mon Sep 17 00:00:00 2001 From: Anton Stjernquist Date: Wed, 7 Sep 2022 23:42:45 +0200 Subject: [PATCH 2/3] fix: only run tests on branch pushes --- .github/workflows/server.yml | 5 ++++- .github/workflows/web.yml | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/server.yml b/.github/workflows/server.yml index f5d36269..6ea4dcc1 100644 --- a/.github/workflows/server.yml +++ b/.github/workflows/server.yml @@ -1,5 +1,8 @@ name: Tests - Server & Client -on: [push] +on: + push: + branches: + - '**' jobs: test: diff --git a/.github/workflows/web.yml b/.github/workflows/web.yml index 936e43be..406c4cf0 100644 --- a/.github/workflows/web.yml +++ b/.github/workflows/web.yml @@ -1,5 +1,8 @@ name: Tests - Web, UI -on: [push] +on: + push: + branches: + - '**' jobs: test: From 81b240f3a9e03034f4b69a58185ad618302f4b5b Mon Sep 17 00:00:00 2001 From: Anton Stjernquist Date: Wed, 7 Sep 2022 23:46:39 +0200 Subject: [PATCH 3/3] fix: pipeline fix for translations generation --- i18next-parser.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i18next-parser.config.js b/i18next-parser.config.js index 19a238a3..141778ab 100644 --- a/i18next-parser.config.js +++ b/i18next-parser.config.js @@ -42,7 +42,7 @@ module.exports = { lineEnding: 'auto', // Control the line ending. See options at https://github.com/ryanve/eol - locales: ['en', 'sv', 'es', 'en-GB'], + locales: ['en', 'sv'], // An array of the locales in your applications namespaceSeparator: 'false',