Skip to content

SWI-5190 Update to Node 20 #173

SWI-5190 Update to Node 20

SWI-5190 Update to Node 20 #173

Workflow file for this run

name: Test
on:
pull_request:
paths:
- "action.yml"
workflow_dispatch:
jobs:
test:
name: Test
runs-on: ${{ fromJSON(vars.SWI_GLORG_UBUNTU_2204) }}
permissions:
id-token: write
contents: write
steps:
- name: Get Github Token from Vault
uses: Bandwidth/vault-provider-action@v1
with:
export-github-pat: true
- name: Checkout
uses: actions/checkout@v4
- name: Run Test with Local Files
id: generate
uses: ./
with:
branch-name: ci-cd-test
token: ${{ env.GITHUB_TEAM_ACCESS_TOKEN }}
openapi-generator-version: 6.5.0
language: python
api-spec-path: ./utils/bandwidth.yml
config: ./utils/test-config.yml
- name: Delete Branch
if: ${{ always() }}
run: git push origin --delete ci-cd-test
shell: bash