fix: xrpl readme #168
Workflow file for this run
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
name: Check package can be published | |
on: | |
pull_request: | |
branches: | |
- master | |
env: | |
# Check available versions below | |
# https://github.com/actions/node-versions/blob/main/versions-manifest.json | |
node-version: "20.x" | |
jobs: | |
check-can-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
cache: "npm" | |
node-version: ${{ env.node-version }} | |
registry-url: "https://registry.npmjs.org" | |
always-auth: true | |
- name: Check if vwbl-core package version can be published | |
uses: technote-space/package-version-check-action@v1 | |
with: | |
PACKAGE_DIR: 'packages/core/' | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PACKAGE_MANAGER: npm | |
- name: Check if vwbl-sdk(evm chain) package version can be published | |
uses: technote-space/package-version-check-action@v1 | |
with: | |
PACKAGE_DIR: 'packages/evm/' | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PACKAGE_MANAGER: npm | |
- name: Check if vwbl-sdk-xrpl package version can be published | |
uses: technote-space/package-version-check-action@v1 | |
with: | |
PACKAGE_DIR: 'packages/xrpl/' | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PACKAGE_MANAGER: npm |