From 31cf03cdd2039596fffebcf3b1e1ce7161dce0aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anderson=20Mart=C3=ADnez?= Date: Fri, 3 Nov 2023 10:23:24 -0400 Subject: [PATCH 1/7] test: badge --- .github/workflows/ci.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 937296f..bea4c42 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,4 +19,15 @@ jobs: node-version: ${{ matrix.node-version }} cache: 'npm' - run: npm ci - - run: npm run test \ No newline at end of file + - name: Test Library + run: npm run test + - name: Bring Your Own Badge + uses: RubbaBoy/BYOB@v1.3.0 + with: + NAME: math + ICON: 'https://upload.wikimedia.org/wikipedia/commons/a/a0/Icon_Mathematical_Plot.svg' + LABEL: 'Does Really Advanced Math' + STATUS: ${{ steps.date.outputs.data }} + COLOR: 007982 + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + \ No newline at end of file From 915e29c34a6544e5be82a386f25ab8952a3a730b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anderson=20Mart=C3=ADnez?= Date: Fri, 3 Nov 2023 10:25:53 -0400 Subject: [PATCH 2/7] fix: ci action id --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bea4c42..29e7634 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,7 @@ jobs: cache: 'npm' - run: npm ci - name: Test Library + id: test run: npm run test - name: Bring Your Own Badge uses: RubbaBoy/BYOB@v1.3.0 @@ -27,7 +28,7 @@ jobs: NAME: math ICON: 'https://upload.wikimedia.org/wikipedia/commons/a/a0/Icon_Mathematical_Plot.svg' LABEL: 'Does Really Advanced Math' - STATUS: ${{ steps.date.outputs.data }} + STATUS: ${{ steps.test.outputs.data }} COLOR: 007982 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file From cb9c65f9eccaba30790025bfe0e33ffd4be1be0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anderson=20Mart=C3=ADnez?= Date: Fri, 3 Nov 2023 10:31:22 -0400 Subject: [PATCH 3/7] fix: test badge --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 29e7634..2c6df33 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,6 +23,7 @@ jobs: id: test run: npm run test - name: Bring Your Own Badge + id: math uses: RubbaBoy/BYOB@v1.3.0 with: NAME: math From 462c0b46ded164e76da01e1a12cc87e93ccfc897 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anderson=20Mart=C3=ADnez?= Date: Fri, 3 Nov 2023 10:37:52 -0400 Subject: [PATCH 4/7] fix: test badge --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2c6df33..93cf87a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,8 +22,6 @@ jobs: - name: Test Library id: test run: npm run test - - name: Bring Your Own Badge - id: math uses: RubbaBoy/BYOB@v1.3.0 with: NAME: math From 53586a5062fbfaacf543f853163c1041b89aa7c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anderson=20Mart=C3=ADnez?= Date: Fri, 3 Nov 2023 10:39:18 -0400 Subject: [PATCH 5/7] fix: tesbig t --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 93cf87a..3cac908 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,4 +30,3 @@ jobs: STATUS: ${{ steps.test.outputs.data }} COLOR: 007982 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - \ No newline at end of file From f187558200b3e37806cb5bcce79a02f0e183bccc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anderson=20Mart=C3=ADnez?= Date: Fri, 3 Nov 2023 10:42:59 -0400 Subject: [PATCH 6/7] fix: test --- .github/workflows/ci.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3cac908..eb4aca5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,11 +22,14 @@ jobs: - name: Test Library id: test run: npm run test - uses: RubbaBoy/BYOB@v1.3.0 - with: - NAME: math - ICON: 'https://upload.wikimedia.org/wikipedia/commons/a/a0/Icon_Mathematical_Plot.svg' - LABEL: 'Does Really Advanced Math' - STATUS: ${{ steps.test.outputs.data }} - COLOR: 007982 + - id: date + run: echo "##[set-output name=data;]$(date)" + - name: Time badge + uses: RubbaBoy/BYOB@v1.3.0 + with: + NAME: time + LABEL: 'Updated at' + STATUS: ${{ steps.tet.outputs.data }} + COLOR: 00EEFF GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + \ No newline at end of file From 79f694327ba1f4b6bbee4d748fec2273faa7ddfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anderson=20Mart=C3=ADnez?= Date: Fri, 3 Nov 2023 11:53:57 -0400 Subject: [PATCH 7/7] fix: test --- .github/workflows/ci.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eb4aca5..2f0fcd9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,14 +22,14 @@ jobs: - name: Test Library id: test run: npm run test - - id: date - run: echo "##[set-output name=data;]$(date)" - - name: Time badge - uses: RubbaBoy/BYOB@v1.3.0 - with: - NAME: time - LABEL: 'Updated at' - STATUS: ${{ steps.tet.outputs.data }} - COLOR: 00EEFF + - name: Build Badge + id: math + uses: RubbaBoy/BYOB@v1.3.0 + with: + NAME: math + ICON: 'https://upload.wikimedia.org/wikipedia/commons/a/a0/Icon_Mathematical_Plot.svg' + LABEL: 'Does Really Advanced Math' + STATUS: ${{ steps.test.outputs.data }} + COLOR: 007982 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file