-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Publish automatically to NPM using [semantic-release](https://github.com/semantic-release/semantic-release) Similar to what we did in valora-inc/logging#5 First step to be able to address the following error when trying to use `es2023` lib in tsconfig: ``` 0:0 error Parsing error: Invalid value for lib provided: es2023 ``` and warning displayed when using eslint: ``` ============= WARNING: You are currently running a version of TypeScript which is not officially supported by @typescript-eslint/typescript-estree. You may find that it works just fine, or you may not. SUPPORTED TYPESCRIPT VERSIONS: >=3.3.1 <4.5.0 YOUR TYPESCRIPT VERSION: 5.6.2 Please only submit bug reports when using the officially supported version. ============= ``` Because it requires a more recent version of [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) Which will be addressed by #13
- Loading branch information
1 parent
01a1501
commit 8617153
Showing
5 changed files
with
2,811 additions
and
671 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Semantic PR title | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- reopened | ||
- edited | ||
- synchronize | ||
|
||
jobs: | ||
semantic-pr-title: | ||
name: Semantic PR title | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: amannn/action-semantic-pull-request@v5 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
name: Workflow | ||
|
||
on: | ||
# Run on pushes to main.. | ||
push: | ||
branches: | ||
- main | ||
# ..and any pull request. | ||
pull_request: | ||
|
||
# Cancel any in progress run of the workflow for a given PR | ||
# This avoids building outdated code | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
check-for-sh: | ||
name: Check for .sh | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: "echo '*** Do not write .sh scripts! ***'; ! find . -type f -name '*.sh' | grep ." | ||
lint: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: 'package.json' | ||
check-latest: true | ||
- run: yarn | ||
- run: yarn format:check | ||
publish: | ||
name: Publish to NPM | ||
if: github.ref == 'refs/heads/main' | ||
needs: | ||
- check-for-sh | ||
- lint | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write # to be able to publish a GitHub release | ||
issues: write # to be able to comment on released issues | ||
pull-requests: write # to be able to comment on released pull requests | ||
id-token: write # to enable use of OIDC for npm provenance | ||
steps: | ||
# actions/checkout MUST come before auth | ||
- uses: actions/checkout@v4 | ||
- id: auth | ||
uses: google-github-actions/auth@v2 | ||
with: | ||
credentials_json: ${{ secrets.MAINNET_SERVICE_ACCOUNT_KEY }} | ||
- id: google-secrets | ||
uses: google-github-actions/get-secretmanager-secrets@v2 | ||
with: | ||
secrets: |- | ||
NPM_TOKEN:celo-mobile-mainnet/NPM_TOKEN | ||
SLACK_WEBHOOK_URL:celo-mobile-mainnet/SLACK_ONCALL_WEBHOOK_URL | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: 'package.json' | ||
check-latest: true | ||
- run: yarn | ||
- run: yarn release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ steps.google-secrets.outputs.NPM_TOKEN }} | ||
- uses: ravsamhq/notify-slack-action@v2 | ||
if: always() | ||
with: | ||
status: ${{ job.status }} | ||
notification_title: '{workflow} has {status_message}' | ||
message_format: '{emoji} *{workflow}* {status_message}. <{run_url}|View Run>' | ||
footer: 'Repo: <{repo_url}|{repo}>' | ||
notify_when: 'failure' | ||
# Tag @supporthero on failures, can change to any slack group id | ||
mention_groups: 'S0277QUM4KB' | ||
mention_groups_when: 'failure' | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ steps.google-secrets.outputs.SLACK_WEBHOOK_URL }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.