Skip to content

Merge pull request #380 from microsoftgraph/dependabot/npm_and_yarn/t… #183

Merge pull request #380 from microsoftgraph/dependabot/npm_and_yarn/t…

Merge pull request #380 from microsoftgraph/dependabot/npm_and_yarn/t… #183

Workflow file for this run

# Pipeline to publish the sdk to npm
name: Publish Microsoft Graph V1 JS SDK to npm
on:
workflow_dispatch:
push:
branches: [ dev ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm run test
env:
TENANT_ID: ${{secrets.tenant_id}}
CLIENT_ID: ${{secrets.client_id}}
CLIENT_SECRET: ${{secrets.client_secret}}
publish-npm:
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/dev' }}
needs: build
environment:
name: production_feed
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run build
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}