Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,6 @@ jobs:
- name: Checkout
uses: actions/checkout@v7

- name: Setup Node
uses: actions/setup-node@v7
with:
node-version: 24
registry-url: "https://registry.npmjs.org"

- name: Update NPM
run: npm install -g npm@latest

- name: Set OpenAPI Generator Version
run: |
OPENAPI_VERSION=$(jq .[\"generator-cli\"].version openapitools.json)
Expand All @@ -73,6 +64,15 @@ jobs:
language: typescript-axios
additional-properties: --additional-properties=npmVersion=$PACKAGE_VERSION

- name: Setup Node
uses: actions/setup-node@v7
with:
node-version: 24
registry-url: "https://registry.npmjs.org"

- name: Update NPM
run: npm install -g npm@latest

- name: Install Packages and Test
run: |
yarn
Expand Down