From: Eduardo San Martin Morote Date: Wed, 7 Apr 2021 14:33:42 +0000 (+0200) Subject: chore: update github files X-Git-Tag: v0.3.0~16 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3879b2ee071814aaded8f6b83e6bfe97eda5d1ce;p=thirdparty%2Fvuejs%2Fpinia.git chore: update github files --- diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index dd1043c7..00000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,8 +0,0 @@ - diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index efcf371f..00000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,35 +0,0 @@ - - - - - -**What kind of change does this PR introduce?** (check at least one) - -- [ ] Bugfix -- [ ] Feature -- [ ] Code style update -- [ ] Refactor -- [ ] Build-related changes -- [ ] Other, please describe: - -**Does this PR introduce a breaking change?** (check one) - -- [ ] Yes -- [ ] No - -If yes, please describe the impact and migration path for existing applications: - -**The PR fulfills these requirements:** - -- [ ] When resolving a specific issue, it's referenced in the PR's title (e.g. `fix #xxx[,#xxx]`, where "xxx" is the issue number) -- [ ] All tests are passing -- [ ] New/updated tests are included - -If adding a **new feature**, the PR's description includes: - -- [ ] A convincing reason for adding this feature (to avoid wasting your time, it's best to open a suggestion issue first and wait for approval before working on it) - -**Other information:** diff --git a/.github/funding.yml b/.github/funding.yml deleted file mode 100644 index 0bd5ac97..00000000 --- a/.github/funding.yml +++ /dev/null @@ -1,3 +0,0 @@ -github: posva -patreon: posva -custom: https://www.paypal.me/posva diff --git a/.github/settings.yml b/.github/settings.yml deleted file mode 100644 index e99aa7aa..00000000 --- a/.github/settings.yml +++ /dev/null @@ -1,25 +0,0 @@ -labels: - - name: bug - color: ee0701 - - name: contribution welcome - color: 0e8a16 - - name: discussion - color: 4935ad - - name: docs - color: 8be281 - - name: enhancement - color: a2eeef - - name: good first issue - color: 7057ff - - name: help wanted - color: 008672 - - name: question - color: d876e3 - - name: wontfix - color: ffffff - - name: WIP - color: ffffff - - name: need repro - color: c9581c - - name: feature request - color: fbca04 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..b4866ab1 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,17 @@ +name: test + +on: + push: + branches: [v1] + pull_request: + branches: [v1] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: bahmutov/npm-install@v1 + - run: yarn run test + - run: yarn codecov