Skip to content

Sync .github/workflows directory with azure-sdk-tools for PR 8436 #1

Sync .github/workflows directory with azure-sdk-tools for PR 8436

Sync .github/workflows directory with azure-sdk-tools for PR 8436 #1

name: Javascript SDK Release Tool Pull Request Check
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
name: Build and Test TypeScript
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: npm install
working-directory: ./tools/js-sdk-release-tools/
- name: Build TypeScript
run: npm run build
working-directory: ./tools/js-sdk-release-tools/
- name: Run Unit Tests
run: npm run test
working-directory: ./tools/js-sdk-release-tools/
- name: Run CI E2E Tests
run: npm run test:ci
working-directory: ./tools/js-sdk-release-tools/