Skip to content

Commit

Permalink
feat: delete sonarqube and add new action
Browse files Browse the repository at this point in the history
  • Loading branch information
kidneyweakx committed Sep 26, 2023
1 parent fc03960 commit deb147a
Show file tree
Hide file tree
Showing 8 changed files with 255 additions and 114 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: "CodeQL"
name: "codeql-analysis"
on:
push:
branches: [ main ]
pull_request:
branches: [ '*' ]
branches: [ main ]
schedule:
- cron: '0 0 * * 0' # Run at midnight on Sunday

jobs:
analyze:
Expand Down
40 changes: 40 additions & 0 deletions .github/workflows/publish-npm-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: publish-npm-package
on:
release:
types: [ published ]
jobs:
github-packages:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
registry-url: 'https://npm.pkg.github.com'
# Defaults to the user or organization that owns the workflow file
scope: '@cathayddt'
- run: npm ci
- run: npm run build:console
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

npm-registry:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
# how to fix the package name
- run: |
sed -i 's/"name": "@cathayddt\/bdk"/"name": "@cathaybc\/bdk"/' package.json
npm install
- run: npm run build:console
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
25 changes: 0 additions & 25 deletions .github/workflows/sonarqube.yml

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/test-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: test-report
on:
push:
branches: [ master ]
pull_request:
branches: [ '*' ]
permissions:
contents: read
actions: read
checks: write
jobs:
report:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'npm'
- run: npm ci
- run: npm run build:console
- run: npm run test:json

- uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: MOCHA Tests # Name of the check run which will be created
path: 'test-*.json' # Path to test results (inside artifact .zip)
reporter: mocha-json # Format of test results
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
branches: [ '*' ]

jobs:
unit-test:
Expand Down
Loading

0 comments on commit deb147a

Please sign in to comment.