From 5486cfba913286c33a22ef12c0ed90185ca408a7 Mon Sep 17 00:00:00 2001 From: Anup-Neupane <100012091+Anup-Neupane@users.noreply.github.com> Date: Wed, 20 Jul 2022 12:22:36 +0545 Subject: [PATCH 01/14] super-linter.yml --- .github/workflows/super-linter.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/super-linter.yml diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml new file mode 100644 index 00000000..5199de07 --- /dev/null +++ b/.github/workflows/super-linter.yml @@ -0,0 +1,27 @@ +# This workflow executes several linters on changed files based on languages used in your code base whenever +# you push a code or open a pull request. +# +# You can adjust the behavior by modifying this file. +# For more information, see: +# https://github.com/github/super-linter +name: Lint Code Base + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] +jobs: + run-lint: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + with: + # Full git history is needed to get a proper list of changed files within `super-linter` + fetch-depth: 0 + + - name: Lint Code Base + uses: github/super-linter@v4 + - name: Super-Linter + uses: github/super-linter@v4.9.4 From 99ff9385fed6a7cf6112c618fc7b720c428880e0 Mon Sep 17 00:00:00 2001 From: Anup-Neupane <100012091+Anup-Neupane@users.noreply.github.com> Date: Wed, 20 Jul 2022 12:24:02 +0545 Subject: [PATCH 02/14] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 37fba13a..5276fced 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,7 @@ These can be changed when the contributors reach a consensus. Vue.js 3 will likely introduce breaking changes on how Vue.js applications will look like. For example, the Vue.js Function API might be introduced. This would cause a lot of our components to change in the overall structure. The changes would be minimal though. With the `vue-function-api` plugin, these changes could be applied already. The problem is that multiple integrations are not working with the plugin. There are intentions to make this work, but for the time being, we should rather focus on different areas. If you still want to be experimental with it, we are happy to get a Pull Request with some experimental feature implementations.

-## Connect +## yes +Connect Join us on [Discord](https://discord.gg/NE2jNmg) From fff5582c80d4b239b146a96f27f31ebab96c3df0 Mon Sep 17 00:00:00 2001 From: Anup-Neupane <100012091+Anup-Neupane@users.noreply.github.com> Date: Wed, 20 Jul 2022 12:35:06 +0545 Subject: [PATCH 03/14] super-linter.yml --- .github/workflows/super-linter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml index 5199de07..956228e7 100644 --- a/.github/workflows/super-linter.yml +++ b/.github/workflows/super-linter.yml @@ -13,7 +13,7 @@ on: branches: [ "master" ] jobs: run-lint: - runs-on: ubuntu-latest + runs-on: ubuntu-18.04 steps: - name: Checkout code uses: actions/checkout@v3 From 36a8c9b564cf00afbd7a40a9ad1b2f8329b4c2b5 Mon Sep 17 00:00:00 2001 From: Anup-Neupane <100012091+Anup-Neupane@users.noreply.github.com> Date: Wed, 20 Jul 2022 12:43:41 +0545 Subject: [PATCH 04/14] its me --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 5276fced..67c979df 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,6 @@ These can be changed when the contributors reach a consensus. Vue.js 3 will likely introduce breaking changes on how Vue.js applications will look like. For example, the Vue.js Function API might be introduced. This would cause a lot of our components to change in the overall structure. The changes would be minimal though. With the `vue-function-api` plugin, these changes could be applied already. The problem is that multiple integrations are not working with the plugin. There are intentions to make this work, but for the time being, we should rather focus on different areas. If you still want to be experimental with it, we are happy to get a Pull Request with some experimental feature implementations.

-## yes -Connect +## yesConnect Join us on [Discord](https://discord.gg/NE2jNmg) From 0cd05307a6b1b116a82f77949a94f9185d5826d6 Mon Sep 17 00:00:00 2001 From: Anup-Neupane <100012091+Anup-Neupane@users.noreply.github.com> Date: Wed, 20 Jul 2022 13:00:46 +0545 Subject: [PATCH 05/14] unittest.yml --- .github/workflows/unittest.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/unittest.yml diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml new file mode 100644 index 00000000..79c023bf --- /dev/null +++ b/.github/workflows/unittest.yml @@ -0,0 +1,21 @@ +name: pull-request + +on: + pull_request: + branches: [ main ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Check out code + - uses: actions/checkout@v2 + + - name: Set up node + uses: actions/setup-node@v1 + + - name: Install dependencies + run: npm install + + - name: Run tests + run: npm test From 95cec3eb32820f8c8bf2a2ec4106bc66dee532cd Mon Sep 17 00:00:00 2001 From: Anup-Neupane <100012091+Anup-Neupane@users.noreply.github.com> Date: Wed, 20 Jul 2022 13:03:14 +0545 Subject: [PATCH 06/14] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 67c979df..5801d437 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,6 @@ These can be changed when the contributors reach a consensus. Vue.js 3 will likely introduce breaking changes on how Vue.js applications will look like. For example, the Vue.js Function API might be introduced. This would cause a lot of our components to change in the overall structure. The changes would be minimal though. With the `vue-function-api` plugin, these changes could be applied already. The problem is that multiple integrations are not working with the plugin. There are intentions to make this work, but for the time being, we should rather focus on different areas. If you still want to be experimental with it, we are happy to get a Pull Request with some experimental feature implementations.

-## yesConnect +## #Connect Join us on [Discord](https://discord.gg/NE2jNmg) From 6d610a2e84f2eee8fd2b9063745d1d5ca77c8646 Mon Sep 17 00:00:00 2001 From: Anup-Neupane <100012091+Anup-Neupane@users.noreply.github.com> Date: Wed, 20 Jul 2022 13:04:43 +0545 Subject: [PATCH 07/14] Update unittest.yml --- .github/workflows/unittest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml index 79c023bf..0cccc6b3 100644 --- a/.github/workflows/unittest.yml +++ b/.github/workflows/unittest.yml @@ -15,7 +15,7 @@ jobs: uses: actions/setup-node@v1 - name: Install dependencies - run: npm install + run: yarn install - name: Run tests - run: npm test + run: yarn test From f506fe90a6585c58ec9ba85f3e7d6279d385f3df Mon Sep 17 00:00:00 2001 From: Anup-Neupane <100012091+Anup-Neupane@users.noreply.github.com> Date: Wed, 20 Jul 2022 13:11:22 +0545 Subject: [PATCH 08/14] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5801d437..85e0faab 100644 --- a/README.md +++ b/README.md @@ -88,4 +88,4 @@ These can be changed when the contributors reach a consensus. ## #Connect -Join us on [Discord](https://discord.gg/NE2jNmg) +Join us on yes [Discord](https://discord.gg/NE2jNmg) From 303b6981735f884b2941204940761ff901ccb76f Mon Sep 17 00:00:00 2001 From: Anup-Neupane <100012091+Anup-Neupane@users.noreply.github.com> Date: Wed, 20 Jul 2022 13:19:13 +0545 Subject: [PATCH 09/14] Delete super-linter.yml --- .github/workflows/super-linter.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/super-linter.yml diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml deleted file mode 100644 index 956228e7..00000000 --- a/.github/workflows/super-linter.yml +++ /dev/null @@ -1,27 +0,0 @@ -# This workflow executes several linters on changed files based on languages used in your code base whenever -# you push a code or open a pull request. -# -# You can adjust the behavior by modifying this file. -# For more information, see: -# https://github.com/github/super-linter -name: Lint Code Base - -on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] -jobs: - run-lint: - runs-on: ubuntu-18.04 - steps: - - name: Checkout code - uses: actions/checkout@v3 - with: - # Full git history is needed to get a proper list of changed files within `super-linter` - fetch-depth: 0 - - - name: Lint Code Base - uses: github/super-linter@v4 - - name: Super-Linter - uses: github/super-linter@v4.9.4 From 8c667f05caceb9ac94220c19c827f4218d5223a6 Mon Sep 17 00:00:00 2001 From: Anup-Neupane <100012091+Anup-Neupane@users.noreply.github.com> Date: Wed, 20 Jul 2022 13:28:22 +0545 Subject: [PATCH 10/14] Delete unittest.yml --- .github/workflows/unittest.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .github/workflows/unittest.yml diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml deleted file mode 100644 index 0cccc6b3..00000000 --- a/.github/workflows/unittest.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: pull-request - -on: - pull_request: - branches: [ main ] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Check out code - - uses: actions/checkout@v2 - - - name: Set up node - uses: actions/setup-node@v1 - - - name: Install dependencies - run: yarn install - - - name: Run tests - run: yarn test From 3aec7d75636dd727d3070294e3772cd7a7f19cf8 Mon Sep 17 00:00:00 2001 From: Anup-Neupane <100012091+Anup-Neupane@users.noreply.github.com> Date: Wed, 20 Jul 2022 13:31:03 +0545 Subject: [PATCH 11/14] Create test.yml --- .github/workflows/test.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..cc3b7958 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,27 @@ +name: 'Test' + +on: + pull_request: + push: + branches: [ 'main' ] + # The "workflow_dispatch" event gives us a button in GitHub's "Action" UI + workflow_dispatch: + +jobs: + test: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ 'ubuntu-latest' ] + node-version: [ '16.x' ] + steps: + - name: 'Checkout repository' + uses: actions/checkout@v3 + + - name: 'Use Node.js v${{ matrix.node-version }}' + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + + - name: 'Run tests' + run: yarn install && yarn test From ece7480e38134c29e09e9b1ac8cd6cbada337c67 Mon Sep 17 00:00:00 2001 From: Anup-Neupane <100012091+Anup-Neupane@users.noreply.github.com> Date: Wed, 20 Jul 2022 13:33:03 +0545 Subject: [PATCH 12/14] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 85e0faab..5dda5fc0 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,6 @@ These can be changed when the contributors reach a consensus. Vue.js 3 will likely introduce breaking changes on how Vue.js applications will look like. For example, the Vue.js Function API might be introduced. This would cause a lot of our components to change in the overall structure. The changes would be minimal though. With the `vue-function-api` plugin, these changes could be applied already. The problem is that multiple integrations are not working with the plugin. There are intentions to make this work, but for the time being, we should rather focus on different areas. If you still want to be experimental with it, we are happy to get a Pull Request with some experimental feature implementations.

-## #Connect +## #Connectt Join us on yes [Discord](https://discord.gg/NE2jNmg) From ef60c942b4f9eaa43969a215019043cc1f209f98 Mon Sep 17 00:00:00 2001 From: Anup-Neupane <100012091+Anup-Neupane@users.noreply.github.com> Date: Wed, 20 Jul 2022 13:36:01 +0545 Subject: [PATCH 13/14] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5dda5fc0..0bb0a88e 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,6 @@ These can be changed when the contributors reach a consensus. Vue.js 3 will likely introduce breaking changes on how Vue.js applications will look like. For example, the Vue.js Function API might be introduced. This would cause a lot of our components to change in the overall structure. The changes would be minimal though. With the `vue-function-api` plugin, these changes could be applied already. The problem is that multiple integrations are not working with the plugin. There are intentions to make this work, but for the time being, we should rather focus on different areas. If you still want to be experimental with it, we are happy to get a Pull Request with some experimental feature implementations.

-## #Connectt +## #Connecttt Join us on yes [Discord](https://discord.gg/NE2jNmg) From a1a226418c455d2675934ad564c6380ac93c8aad Mon Sep 17 00:00:00 2001 From: Anup-Neupane <100012091+Anup-Neupane@users.noreply.github.com> Date: Wed, 20 Jul 2022 13:44:27 +0545 Subject: [PATCH 14/14] Update test.yml --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cc3b7958..7b1adb2c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,7 +3,7 @@ name: 'Test' on: pull_request: push: - branches: [ 'main' ] + branches: [ 'master' ] # The "workflow_dispatch" event gives us a button in GitHub's "Action" UI workflow_dispatch: