config: supporting keyvault-7.5-preview.1
#310
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Validate the Track1 SDKs can be regenerated | |
on: | |
pull_request: | |
types: ['opened', 'synchronize'] | |
jobs: | |
test-regenerate-the-track1-sdks: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: '1.18.5' | |
- uses: actions/setup-dotnet@v3 | |
with: | |
# The Track1 AutoRest Generator requires .net core 2.x | |
dotnet-version: 2.2.x | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Generate Track1 SDKs | |
run: | | |
cd ./tools/autowrapper | |
make tools | |
make run | |
env: | |
NODE_OPTIONS: "--max-old-space-size=4096" |