Skip to content

Commit

Permalink
✨ Change the project name
Browse files Browse the repository at this point in the history
  • Loading branch information
priestine committed Sep 9, 2020
1 parent e71dbd5 commit 1d8dffd
Show file tree
Hide file tree
Showing 24 changed files with 241 additions and 238 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @priestine
* @orlovedev
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: priestine
patreon: orlovedev
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
Expand Down
4 changes: 2 additions & 2 deletions .github/SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
| Version | Supported |
| ------- | ------------------ |
| 1.x.x | :white_check_mark: |
| 1.7.0 | :rotating_light: |
| 1.14.0 | :rotating_light: |

`1.7.0` has a security issue that might compromise your credentials when publishing versions with build metadata. Make sure you update to at least `1.7.1` where the issue was fixed.
* `1.7.0` has a security issue that might compromise your credentials when publishing versions with build metadata. Make sure you update to at least `1.7.1` where the issue was fixed.

## Reporting a Vulnerability

Expand Down
2 changes: 1 addition & 1 deletion .github/code_of_conduct.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at priestine1.dev@gmail.com. All
reported by contacting the project team at orlove.dev@gmail.com. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Expand Down
2 changes: 1 addition & 1 deletion .github/issue_template/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Bug report
about: Create a report to help us improve
title: "[BUG] "
labels: bug
assignees: priestine
assignees: orlovedev
---

## Describe the bug
Expand Down
2 changes: 1 addition & 1 deletion .github/issue_template/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Feature request
about: Suggest an idea for this project
title: "[ENHANCEMENT] "
labels: enhancement
assignees: priestine
assignees: orlovedev
---

## Is your feature request related to a problem? Please describe
Expand Down
52 changes: 26 additions & 26 deletions .github/workflows/coverage-workflow.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
name: Codecov Reports
name: Sending Codecov Report
on: [push]
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
env:
OS: ${{ matrix.os }}
NODE: '12.x'
steps:
- uses: actions/checkout@master
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Install dependencies
run: yarn
- name: Generate coverage report
run: yarn test:cover
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
flags: unittests
env_vars: OS,NODE
name: codecov-umbrella
fail_ci_if_error: true
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
env:
OS: ${{ matrix.os }}
NODE: "12.x"
steps:
- uses: actions/checkout@master
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: "12.x"
- name: Install dependencies
run: yarn
- name: Generate coverage report
run: yarn test:cover
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
flags: unittests
env_vars: OS,NODE
name: codecov-umbrella
fail_ci_if_error: true
26 changes: 13 additions & 13 deletions .github/workflows/lint-workflow.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: XO
name: Linting (XO, ESLint, tsc)
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Install dependencies
run: yarn
- name: Lint
run: yarn lint
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: "12.x"
- name: Install dependencies
run: yarn
- name: Lint
run: yarn lint
88 changes: 44 additions & 44 deletions .github/workflows/publish-preview-workflow.yml
Original file line number Diff line number Diff line change
@@ -1,46 +1,46 @@
name: Publish Node.js Package
name: Publishing Package (NPM, GHP)
on:
release:
types: [prereleased]
release:
types: [prereleased]
jobs:
npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
registry-url: 'https://registry.npmjs.org'
- name: Set env
run: echo ::set-env name=RELEASE_VERSION::${GITHUB_REF#refs/*/}
- name: Install dependencies
run: yarn
- name: Transpile to JavaScript
run: yarn build
- run: |
sed -i s/"\"version\":.*/\"version\": \"$RELEASE_VERSION\","/ package.json
- name: Publish to NPM
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
ghp:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
registry-url: https://npm.pkg.github.com/
scope: '@priestine'
- name: Set env
run: echo ::set-env name=RELEASE_VERSION::${GITHUB_REF#refs/*/}
- name: Install dependencies
run: yarn
- name: Transpile to JavaScript
run: yarn build
- run: |
sed -i s/"\"version\":.*/\"version\": \"$RELEASE_VERSION\","/ package.json
- name: Publish to GHP
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.PRIESTINE_VERSIONS_TOKEN }}
npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "12.x"
registry-url: "https://registry.npmjs.org"
- name: Set env
run: echo ::set-env name=RELEASE_VERSION::${GITHUB_REF#refs/*/}
- name: Install dependencies
run: yarn
- name: Transpile to JavaScript
run: yarn build
- run: |
sed -i s/"\"version\":.*/\"version\": \"$RELEASE_VERSION\","/ package.json
- name: Publish to NPM
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
ghp:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "12.x"
registry-url: https://npm.pkg.github.com/
scope: "@orlovedev"
- name: Set env
run: echo ::set-env name=RELEASE_VERSION::${GITHUB_REF#refs/*/}
- name: Install dependencies
run: yarn
- name: Transpile to JavaScript
run: yarn build
- run: |
sed -i s/"\"version\":.*/\"version\": \"$RELEASE_VERSION\","/ package.json
- name: Publish to GHP
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.OR_RELEASE_TOKEN }}
88 changes: 44 additions & 44 deletions .github/workflows/publish-workflow.yml
Original file line number Diff line number Diff line change
@@ -1,46 +1,46 @@
name: Publish Node.js Package
name: Publishing Preview Package (NPM, GHP)
on:
release:
types: [released]
release:
types: [released]
jobs:
npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
registry-url: 'https://registry.npmjs.org'
- name: Set env
run: echo ::set-env name=RELEASE_VERSION::${GITHUB_REF#refs/*/}
- name: Install dependencies
run: yarn
- name: Transpile to JavaScript
run: yarn build
- run: |
sed -i s/"\"version\":.*/\"version\": \"$RELEASE_VERSION\","/ package.json
- name: Publish to NPM
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
ghp:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12.x'
registry-url: https://npm.pkg.github.com/
scope: '@priestine'
- name: Set env
run: echo ::set-env name=RELEASE_VERSION::${GITHUB_REF#refs/*/}
- name: Install dependencies
run: yarn
- name: Transpile to JavaScript
run: yarn build
- run: |
sed -i s/"\"version\":.*/\"version\": \"$RELEASE_VERSION\","/ package.json
- name: Publish to GHP
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.PRIESTINE_VERSIONS_TOKEN }}
npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "12.x"
registry-url: "https://registry.npmjs.org"
- name: Set env
run: echo ::set-env name=RELEASE_VERSION::${GITHUB_REF#refs/*/}
- name: Install dependencies
run: yarn
- name: Transpile to JavaScript
run: yarn build
- run: |
sed -i s/"\"version\":.*/\"version\": \"$RELEASE_VERSION\","/ package.json
- name: Publish to NPM
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
ghp:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "12.x"
registry-url: https://npm.pkg.github.com/
scope: "@orlovedev"
- name: Set env
run: echo ::set-env name=RELEASE_VERSION::${GITHUB_REF#refs/*/}
- name: Install dependencies
run: yarn
- name: Transpile to JavaScript
run: yarn build
- run: |
sed -i s/"\"version\":.*/\"version\": \"$RELEASE_VERSION\","/ package.json
- name: Publish to GHP
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.OR_RELEASE_TOKEN }}
32 changes: 16 additions & 16 deletions .github/workflows/test-workflow.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: AVA
name: Testing (AVA)
on: [push, pull_request]
jobs:
check:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Install dependencies
run: yarn
- name: Test
run: yarn test
check:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: "12.x"
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn test
7 changes: 4 additions & 3 deletions .github/workflows/versioning-preview-workflow.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: Priestine Versioning (Preview)
name: Versioning (Alpha)
on:
push:
branches-ignore:
- main
- master
jobs:
versioning:
Expand All @@ -14,7 +15,7 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Publish new version if applicable
- name: Publish new release (if applicable)
run: npx @priestine/versions@latest --pre-release=alpha --repository=$GITHUB_REPOSITORY
env:
PRIESTINE_VERSIONS_TOKEN: ${{ secrets.PRIESTINE_VERSIONS_TOKEN }}
OR_RELEASE_TOKEN: ${{ secrets.OR_RELEASE_TOKEN }}
12 changes: 7 additions & 5 deletions .github/workflows/versioning-workflow.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: Priestine Versioning
name: Versioning
on:
push:
branches: [master]
branches:
- master
- main
jobs:
versioning:
runs-on: ubuntu-latest
Expand All @@ -13,7 +15,7 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Publish new version if applicable
run: npx @priestine/versions@latest --repository=$GITHUB_REPOSITORY
- name: Publish new release (if applicable)
run: npx or-release --repository=$GITHUB_REPOSITORY
env:
PRIESTINE_VERSIONS_TOKEN: ${{ secrets.PRIESTINE_VERSIONS_TOKEN }}
OR_RELEASE_TOKEN: ${{ secrets.OR_RELEASE_TOKEN }}
Loading

0 comments on commit 1d8dffd

Please sign in to comment.