From 078ebf6b875790d9aca20cff47bf88cf16b13458 Mon Sep 17 00:00:00 2001 From: David Boyne Date: Tue, 29 Oct 2024 21:20:01 +0000 Subject: [PATCH 1/5] init commit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 22094d2..48baea7 100644 --- a/README.md +++ b/README.md @@ -78,4 +78,4 @@ You can find the [contributing guidelines here](https://eventcatalog.dev/docs/co This project is governed by a [dual-license](./LICENSE.md). To ensure the sustainability of the project, you can freely make use of this software if your projects are Open Source. Otherwise for internal systems you must obtain a [commercial license](./LICENSE-COMMERCIAL.md). -To obtain a commercial license or have any questions you can email us at `hello@eventcatalog.dev`. +To obtain a commercial license or have any questions you can email us at `hello@eventcatalog.dev` From 6e74d689f2fa0f4d2edc337d9458f60356faae72 Mon Sep 17 00:00:00 2001 From: David Boyne Date: Tue, 29 Oct 2024 21:22:33 +0000 Subject: [PATCH 2/5] Create rare-radios-repair.md --- .changeset/rare-radios-repair.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/rare-radios-repair.md diff --git a/.changeset/rare-radios-repair.md b/.changeset/rare-radios-repair.md new file mode 100644 index 0000000..cf03818 --- /dev/null +++ b/.changeset/rare-radios-repair.md @@ -0,0 +1,5 @@ +--- +"@eventcatalog/backstage-plugin-eventcatalog": patch +--- + +init commit From 45f5cbe723e377fff3642117916ff27859d7b2a3 Mon Sep 17 00:00:00 2001 From: David Boyne Date: Tue, 29 Oct 2024 21:25:43 +0000 Subject: [PATCH 3/5] fixing builds --- .github/workflows/lint.yml | 4 ++++ .github/workflows/tests.yml | 4 ++++ .github/workflows/verify-build.yml | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 9e6c6a2..d3f2fec 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,6 +12,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: '20' - name: Install Yarn run: npm install -g yarn - name: Installation diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 12cfe0c..fd94faf 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,6 +14,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: '20' - name: Installation run: yarn install - name: Run tests diff --git a/.github/workflows/verify-build.yml b/.github/workflows/verify-build.yml index 567b24c..12fe86b 100644 --- a/.github/workflows/verify-build.yml +++ b/.github/workflows/verify-build.yml @@ -14,6 +14,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: '20' - name: Install Yarn run: npm install -g yarn - name: Installation From 032910ffedfe76e19cc975fc78c4b49f8ae03763 Mon Sep 17 00:00:00 2001 From: David Boyne Date: Tue, 29 Oct 2024 21:28:08 +0000 Subject: [PATCH 4/5] fixing builds --- .github/workflows/verify-build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/verify-build.yml b/.github/workflows/verify-build.yml index 12fe86b..b3a31f3 100644 --- a/.github/workflows/verify-build.yml +++ b/.github/workflows/verify-build.yml @@ -22,5 +22,7 @@ jobs: run: npm install -g yarn - name: Installation run: yarn install + - name: Build types + run: yarn tsc - name: Build run: yarn build From f558f920127dfac126138cd31e5a5f145930a2dc Mon Sep 17 00:00:00 2001 From: David Boyne Date: Wed, 30 Oct 2024 09:46:02 +0000 Subject: [PATCH 5/5] update to start --- .github/workflows/tests.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fd94faf..bc13dc4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,15 +21,4 @@ jobs: - name: Installation run: yarn install - name: Run tests - run: yarn test - - build-windows: - name: Tests on Windows - timeout-minutes: 30 - runs-on: windows-latest - steps: - - uses: actions/checkout@v4 - - name: Installation - run: yarn install - - name: Run tests - run: yarn test + run: yarn test \ No newline at end of file