Skip to content

Commit

Permalink
Merge pull request #3945 from microsoft-search/spfx-1-19
Browse files Browse the repository at this point in the history
Extensibility SPFx v1.19 + build scripts
  • Loading branch information
wobba authored Aug 29, 2024
2 parents 0117ecc + 79d2506 commit 4987442
Show file tree
Hide file tree
Showing 7 changed files with 5,653 additions and 12,525 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ jobs:
environment: production
if: ${{ github.event.inputs.publish_docs }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
node-version: 18

- name: Setup python
uses: actions/setup-python@v2
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,20 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: develop
node-version: 18
# setup nodejs
- name: Use Node.js 16
uses: actions/setup-node@v2
- name: Use Node.js 18
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18
registry-url: "https://registry.npmjs.org"
# cache node modules
- name: Cache node modules
id: cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
**/node_modules
Expand Down
18 changes: 10 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,28 +28,29 @@ jobs:
semver: ${{ steps.setoutputs.outputs.semver }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
node-version: 18

- name: Setup GitVersion
uses: gittools/actions/gitversion/setup@v0.9.7
uses: gittools/actions/gitversion/setup@v3.0.0
with:
versionSpec: '5.x'
versionSpec: '6.x'

- name: Setup pnpm
uses: pnpm/action-setup@v2.4.1
uses: pnpm/action-setup@v4
with:
version: 7
version: 9

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Determine Version
id: gitversion
uses: gittools/actions/gitversion/execute@v0.9.7
uses: gittools/actions/gitversion/execute@v3.0.0

- name: Set outputs
id: setoutputs
Expand Down Expand Up @@ -78,9 +79,10 @@ jobs:
needs: build
steps:

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
node-version: 18

- uses: actions/download-artifact@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions search-extensibility/.yo-rc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"@microsoft/generator-sharepoint": {
"isCreatingSolution": true,
"environment": "spo",
"version": "1.18.2",
"version": "1.19.0",
"libraryName": "pnp-search-extensibility",
"libraryId": "f13a5866-004f-4219-b078-69731f848bd1",
"packageManager": "npm",
"isDomainIsolated": false,
"componentType": "library",
"nodeVersion": "16.20.0",
"nodeVersion": "18.20.4",
"sdkVersions": {
"@microsoft/teams-js": "2.12.0",
"@microsoft/microsoft-graph-client": "3.0.2"
Expand Down
Loading

0 comments on commit 4987442

Please sign in to comment.