|
7 | 7 | pull_request:
|
8 | 8 |
|
9 | 9 | jobs:
|
10 |
| - build: |
11 |
| - runs-on: ubuntu-latest |
12 |
| - environment: |
13 |
| - name: build_test |
14 |
| - env: |
15 |
| - TENANT_ID: ${{ secrets.TENANT_ID }} |
16 |
| - strategy: |
17 |
| - matrix: |
18 |
| - node-version: [18.x, 20.x] |
19 |
| - steps: |
20 |
| - - uses: actions/checkout@v4 |
21 |
| - - name: Use Node.js ${{ matrix.node-version }} |
22 |
| - uses: actions/setup-node@v4 |
23 |
| - with: |
24 |
| - node-version: ${{ matrix.node-version }} |
25 |
| - - run: .\scripts\updateVersion.ps1 |
26 |
| - shell: pwsh |
27 |
| - working-directory: ./ |
28 |
| - - run: npm ci |
29 |
| - - run: npm run build |
30 |
| - - run: npm run lint:eslint:loud |
31 |
| - - run: npm run prettier:check |
32 |
| - - name: Archive dist folders # archive dist folders to verify if they are transpiled correctly and available for publishing |
33 |
| - uses: actions/upload-artifact@v4 |
34 |
| - with: |
35 |
| - name: dist folders ${{ matrix.node-version }} |
36 |
| - path: | |
37 |
| - packages/abstractions/dist |
38 |
| - packages/serialization/form/dist |
39 |
| - packages/serialization/json/dist |
40 |
| - packages/serialization/multipart/dist |
41 |
| - packages/serialization/text/dist |
42 |
| - packages/http/fetch/dist |
43 |
| - packages/authentication/azure/dist |
44 |
| - - run: npm run test:integrated |
45 |
| - if: ${{env.TENANT_ID != '' }} |
46 |
| - env: |
47 |
| - TENANT_ID: ${{secrets.tenant_id}} |
48 |
| - CLIENT_ID: ${{secrets.client_id}} |
49 |
| - CLIENT_SECRET: ${{secrets.client_secret}} |
50 |
| - USER_ID: ${{secrets.user_id}} |
51 |
| - - run: npm run test |
52 |
| - |
53 |
| - publish-npm: |
54 |
| - if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && !contains(github.event.head_commit.message, 'auto dependabot')}} |
55 |
| - needs: build |
56 |
| - environment: |
57 |
| - name: production_feed |
58 |
| - runs-on: ubuntu-latest |
59 |
| - steps: |
60 |
| - - uses: actions/checkout@v4 |
61 |
| - - uses: actions/setup-node@v4 |
62 |
| - with: |
63 |
| - node-version: 20 |
64 |
| - registry-url: https://registry.npmjs.org/ |
65 |
| - - run: | |
66 |
| - git config --global user.name '${GITHUB_ACTOR}' |
67 |
| - git config --global user.email '${GITHUB_ACTOR}@users.noreply.github.com' |
68 |
| - env: |
69 |
| - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
70 |
| - GITHUB_ACTOR: ${{ secrets.GIT_USERNAME }} |
71 |
| - - run: npm ci |
72 |
| - - run: npm run build |
73 |
| - - run: npx lerna publish from-package --yes |
74 |
| - env: |
75 |
| - NODE_AUTH_TOKEN: ${{secrets.npm_token}} |
| 10 | + build: |
| 11 | + runs-on: ubuntu-latest |
| 12 | + environment: |
| 13 | + name: build_test |
| 14 | + env: |
| 15 | + TENANT_ID: ${{ secrets.TENANT_ID }} |
| 16 | + strategy: |
| 17 | + matrix: |
| 18 | + node-version: [18.x, 20.x, 22.x] |
| 19 | + steps: |
| 20 | + - uses: actions/checkout@v4 |
| 21 | + - name: Use Node.js ${{ matrix.node-version }} |
| 22 | + uses: actions/setup-node@v4 |
| 23 | + with: |
| 24 | + node-version: ${{ matrix.node-version }} |
| 25 | + - run: npm ci |
| 26 | + - run: npm run build |
| 27 | + - run: npm run lint:eslint:loud |
| 28 | + - run: npm run prettier:check |
| 29 | + - name: Archive dist folders # archive dist folders to verify if they are transpiled correctly and available for publishing |
| 30 | + uses: actions/upload-artifact@v4 |
| 31 | + with: |
| 32 | + name: dist folders ${{ matrix.node-version }} |
| 33 | + path: | |
| 34 | + packages/abstractions/dist |
| 35 | + packages/serialization/form/dist |
| 36 | + packages/serialization/json/dist |
| 37 | + packages/serialization/multipart/dist |
| 38 | + packages/serialization/text/dist |
| 39 | + packages/http/fetch/dist |
| 40 | + packages/authentication/azure/dist |
| 41 | + - run: npm run test:integrated |
| 42 | + if: ${{env.TENANT_ID != '' }} |
| 43 | + env: |
| 44 | + TENANT_ID: ${{secrets.tenant_id}} |
| 45 | + CLIENT_ID: ${{secrets.client_id}} |
| 46 | + CLIENT_SECRET: ${{secrets.client_secret}} |
| 47 | + USER_ID: ${{secrets.user_id}} |
| 48 | + - run: npm run test |
76 | 49 |
|
| 50 | + publish-npm: |
| 51 | + if: "${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && contains(github.event.head_commit.message, 'chore: release main') }}" |
| 52 | + needs: build |
| 53 | + environment: |
| 54 | + name: production_feed |
| 55 | + runs-on: ubuntu-latest |
| 56 | + steps: |
| 57 | + - uses: actions/checkout@v4 |
| 58 | + - uses: actions/setup-node@v4 |
| 59 | + with: |
| 60 | + node-version: 20 |
| 61 | + registry-url: https://registry.npmjs.org/ |
| 62 | + - run: | |
| 63 | + git config --global user.name '${GITHUB_ACTOR}' |
| 64 | + git config --global user.email '${GITHUB_ACTOR}@users.noreply.github.com' |
| 65 | + env: |
| 66 | + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
| 67 | + GITHUB_ACTOR: ${{ secrets.GIT_USERNAME }} |
| 68 | + - run: npm ci |
| 69 | + - run: npm run build |
| 70 | + - run: npx lerna publish from-package --yes |
| 71 | + env: |
| 72 | + NODE_AUTH_TOKEN: ${{secrets.npm_token}} |
77 | 73 |
|
| 74 | + # The check-typescript-version-matrix returns success if all matrix jobs in build are successful; otherwise, it returns a failure. |
| 75 | + # Use this as a PR status check for GitHub Policy Service instead of individual matrix entry checks. |
| 76 | + check-typescript-version-matrix: |
| 77 | + runs-on: ubuntu-latest |
| 78 | + needs: [build] |
| 79 | + if: always() |
| 80 | + steps: |
| 81 | + - name: All build matrix options are successful |
| 82 | + if: ${{ !(contains(needs.*.result, 'failure')) }} |
| 83 | + run: exit 0 |
| 84 | + - name: One or more build matrix options failed |
| 85 | + if: ${{ contains(needs.*.result, 'failure') }} |
| 86 | + run: exit 1 |
0 commit comments