-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: re add workflows and husky config
- Loading branch information
Showing
6 changed files
with
159 additions
and
1 deletion.
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,24 @@ | ||
name: Audit | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
audit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
|
||
- name: Use Node.js 20.x | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 20.x | ||
cache: "npm" | ||
|
||
- name: Upgrade npm | ||
run: npm i -g npm | ||
|
||
- name: Install | ||
run: npm ci | ||
|
||
- name: Audit signatures | ||
run: npm audit signatures |
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,46 @@ | ||
name: Set rollout by path - Manual | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
packageVersion: | ||
description: "NPM Version of the release (@dcl/catalyst-monitor)" | ||
required: true | ||
default: "" | ||
deploymentEnvironment: | ||
type: "choice" | ||
description: "Deployment environment" | ||
required: true | ||
default: "zone" | ||
options: | ||
- zone | ||
- today | ||
- org | ||
rolloutPercentage: | ||
description: "The percentage for this rollout" | ||
required: true | ||
default: "100" | ||
|
||
jobs: | ||
set-manual-by-path-rollout: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: hmarr/debug-action@v2 | ||
- name: Set Rollout | ||
uses: decentraland/set-rollout-action@v2 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# Repo deployment info | ||
ref: ${{ github.event.ref }} | ||
sha: ${{ github.sha }} | ||
|
||
# CDN information | ||
packageName: "@dcl/catalyst-monitor" | ||
packageVersion: ${{ github.event.inputs.packageVersion }} | ||
|
||
# Rollout information | ||
deploymentPath: "catalyst-monitor" | ||
deploymentEnvironment: ${{ github.event.inputs.deploymentEnvironment }} | ||
deploymentName: "_site" | ||
percentage: ${{ github.event.inputs.rolloutPercentage }} |
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,50 @@ | ||
name: Set rollout by path | ||
|
||
on: [deployment_status] | ||
|
||
jobs: | ||
set-rollout: | ||
if: ${{ github.event.deployment.task == 'upload-to-cdn' && github.event.deployment_status.state == 'success' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: hmarr/debug-action@v2 | ||
|
||
# Dev | ||
- name: Set Rollout - Development | ||
uses: decentraland/set-rollout-action@v2 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# Repo deployment info | ||
ref: ${{ github.event.deployment.ref }} | ||
sha: ${{ github.event.deployment.sha }} | ||
|
||
# CDN information | ||
packageName: ${{ github.event.deployment.payload.packageName }} | ||
packageVersion: ${{ github.event.deployment.payload.packageVersion }} | ||
|
||
# Rollout information | ||
deploymentPath: 'catalyst-monitor-site' | ||
deploymentEnvironment: 'zone' | ||
deploymentName: '_site' | ||
percentage: 100 | ||
|
||
# Stg | ||
- name: Set Rollout - Staging | ||
uses: decentraland/set-rollout-action@v2 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# Repo deployment info | ||
ref: ${{ github.event.deployment.ref }} | ||
sha: ${{ github.event.deployment.sha }} | ||
|
||
# CDN information | ||
packageName: ${{ github.event.deployment.payload.packageName }} | ||
packageVersion: ${{ github.event.deployment.payload.packageVersion }} | ||
|
||
# Rollout information | ||
deploymentPath: 'catalyst-monitor' | ||
deploymentEnvironment: 'today' | ||
deploymentName: '_site' | ||
percentage: 100 |
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,19 @@ | ||
name: Test | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@main | ||
- name: Use Node.js 20.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 20.x | ||
- name: Install | ||
run: npm ci | ||
|
||
- name: Test | ||
run: npm run test:coverage | ||
if: ${{ always() }} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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