Skip to content

feat(iam-token-service): replace jsonwebtoken with jose #285

feat(iam-token-service): replace jsonwebtoken with jose

feat(iam-token-service): replace jsonwebtoken with jose #285

Workflow file for this run

name: Pull Request Automated Checks
on:
pull_request:
branches:
- master
- alpha
- beta
jobs:
tests:
runs-on: ubuntu-20.04
steps:
- uses: yandex-cloud/nodejs-sdk/.github/actions/checkout-and-install-node@d6b5322d8dbc130126ec1fa00bc0f2d6cc2f53db
- run: npm run test
check-endpoints:
runs-on: ubuntu-20.04
# Currently, the check-endpoints script fails on the master branch.
# So we need to continue on error.
continue-on-error: true
steps:
- uses: yandex-cloud/nodejs-sdk/.github/actions/checkout-and-install-node@d6b5322d8dbc130126ec1fa00bc0f2d6cc2f53db
with:
submodules: recursive
- run: npm run check-endpoints
lint:
runs-on: ubuntu-20.04
steps:
- uses: yandex-cloud/nodejs-sdk/.github/actions/checkout-and-install-node@d6b5322d8dbc130126ec1fa00bc0f2d6cc2f53db
- run: npm run lint
build:
runs-on: ubuntu-20.04
steps:
- uses: yandex-cloud/nodejs-sdk/.github/actions/checkout-and-install-node@d6b5322d8dbc130126ec1fa00bc0f2d6cc2f53db
- run: npm run build