From 6f89e1af2981b68bcf4dfa1f81469e8a273d8473 Mon Sep 17 00:00:00 2001 From: Dave Date: Tue, 23 May 2023 18:06:39 +0100 Subject: [PATCH 1/7] Update deploy.yml --- .github/workflows/deploy.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index cc06a49..658ea56 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,7 +13,10 @@ jobs: uses: actions/checkout@v3 - name: Install and Build 🔧 - run: | + - uses: actions/setup-node@v3 + with: + node-version: 16 + - run: | npm ci npm run build From bd0fa9cc2ebe4720b4ea680d8e239f25a7a18c20 Mon Sep 17 00:00:00 2001 From: Dave Date: Tue, 23 May 2023 18:07:39 +0100 Subject: [PATCH 2/7] Delete linter.yml --- .github/workflows/linter.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/linter.yml diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml deleted file mode 100644 index 7373a53..0000000 --- a/.github/workflows/linter.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Lint Code Base - -on: - push: - branches: [ main, develop ] - pull_request: - branches: [ main, develop ] - -jobs: - build: - name: Lint Code Base - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: '14' - - run: npm install - - run: npm run lint-ci - From f8b25153c6a651cc41f3f15dd58452ce3804dfc0 Mon Sep 17 00:00:00 2001 From: Dave Date: Tue, 23 May 2023 18:07:54 +0100 Subject: [PATCH 3/7] Delete changelog-check.yml --- .github/workflows/changelog-check.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .github/workflows/changelog-check.yml diff --git a/.github/workflows/changelog-check.yml b/.github/workflows/changelog-check.yml deleted file mode 100644 index 75e9d23..0000000 --- a/.github/workflows/changelog-check.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Enforce Changelog Update -on: - pull_request: - types: [assigned, opened, synchronize, reopened, labeled, unlabeled] - branches: - - main - - develop -jobs: - build: - name: Check Actions - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - name: Changelog check - uses: Zomzog/changelog-checker@v1.2.0 - with: - fileName: CHANGELOG.md - noChangelogLabel: no changelog - checkNotification: Simple - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 5dcfd5a7937ab1b7144471efd157b29ec8a229ee Mon Sep 17 00:00:00 2001 From: Dave Date: Tue, 23 May 2023 18:09:11 +0100 Subject: [PATCH 4/7] Update deploy.yml --- .github/workflows/deploy.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 658ea56..1d08645 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -16,9 +16,8 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 16 - - run: | - npm ci - npm run build + - run: npm ci + - run: npm run build - name: Deploy 🚀 uses: JamesIves/github-pages-deploy-action@v4.2.5 From 4dda9ddebb7f800ff5fa7c09a421d24030ffaa76 Mon Sep 17 00:00:00 2001 From: Dave Date: Tue, 23 May 2023 18:11:33 +0100 Subject: [PATCH 5/7] Update deploy.yml --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1d08645..d480525 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -17,7 +17,7 @@ jobs: with: node-version: 16 - run: npm ci - - run: npm run build + - run: npm test - name: Deploy 🚀 uses: JamesIves/github-pages-deploy-action@v4.2.5 From 60b3bee450b1165eabe4a17efdc4a8bdfbc50dde Mon Sep 17 00:00:00 2001 From: Dave Date: Tue, 23 May 2023 18:15:26 +0100 Subject: [PATCH 6/7] Update deploy.yml --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d480525..287124d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,11 +13,11 @@ jobs: uses: actions/checkout@v3 - name: Install and Build 🔧 - - uses: actions/setup-node@v3 + uses: actions/setup-node@v3 with: node-version: 16 - run: npm ci - - run: npm test + - run: npm build - name: Deploy 🚀 uses: JamesIves/github-pages-deploy-action@v4.2.5 From cf68a2afcb2df233af54fb014661c6f21fb235e8 Mon Sep 17 00:00:00 2001 From: Dave Date: Tue, 23 May 2023 18:17:15 +0100 Subject: [PATCH 7/7] Update deploy.yml --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 287124d..7199858 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -17,7 +17,7 @@ jobs: with: node-version: 16 - run: npm ci - - run: npm build + - run: npm run build - name: Deploy 🚀 uses: JamesIves/github-pages-deploy-action@v4.2.5