Skip to content

Commit

Permalink
chore: update release configuration (#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaslagoni authored Aug 31, 2023
1 parent ab875e4 commit 55afc3c
Show file tree
Hide file tree
Showing 3 changed files with 3,664 additions and 8,949 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/pr-testing-with-generator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Check package-lock version
uses: asyncapi/.github/.github/actions/get-node-version-from-package-lock@master
id: lockversion
- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 14
node-version: "${{ steps.lockversion.outputs.version }}"
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Install dependencies
run: NODE_ENV=production npm install
- name: Install generator
run: npm i @asyncapi/generator
- name: Run generation
run: node_modules/@asyncapi/generator/cli.js https://raw.githubusercontent.com/asyncapi/generator/v1.1.5/test/docs/dummy.yml ./ -o test/output --force-write
run: npx -p @asyncapi/cli asyncapi generate fromTemplate https://raw.githubusercontent.com/asyncapi/generator/v1.1.5/test/docs/dummy.yml ./ -o test/output --force-write
Loading

0 comments on commit 55afc3c

Please sign in to comment.