Skip to content

Commit

Permalink
upgrade ci script
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaslagoni committed Aug 31, 2023
1 parent 890108e commit d05848e
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/pr-testing-with-generator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,16 @@ 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
Expand Down

0 comments on commit d05848e

Please sign in to comment.