mirror of
https://github.com/azure/login.git
synced 2026-03-15 09:20:56 -04:00
32 lines
749 B
YAML
32 lines
749 B
YAML
name: pr-check
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- 'releases/*'
|
|
jobs:
|
|
az-login-test:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- name: Checkout from PR branch
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
|
ref: ${{ github.event.pull_request.head.ref }}
|
|
|
|
# Using 20.x version as an example
|
|
- name: Set Node.js 20.x for GitHub Action
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20.x
|
|
|
|
- name: installing node_modules
|
|
run: npm install
|
|
|
|
- name: Build GitHub Action
|
|
run: npm run build
|
|
|
|
- name: Run mock test
|
|
run: npm run test
|