test: add script to check that all services have corresponding endpoints #142
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: 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@f69248b52b7991214847e889f28ba0883ed0ca2c | |
- run: npm run test | |
# check-endpoints: | |
# runs-on: ubuntu-20.04 | |
# steps: | |
# - uses: yandex-cloud/nodejs-sdk/.github/actions/checkout-and-install-node@f69248b52b7991214847e889f28ba0883ed0ca2c | |
# - run: npm run check-endpoints | |
lint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: yandex-cloud/nodejs-sdk/.github/actions/checkout-and-install-node@f69248b52b7991214847e889f28ba0883ed0ca2c | |
- run: npm run lint | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: yandex-cloud/nodejs-sdk/.github/actions/checkout-and-install-node@f69248b52b7991214847e889f28ba0883ed0ca2c | |
- run: npm run build |