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
6 changes: 4 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,11 @@ jobs:
architecture: ${{ steps.calculate_architecture.outputs.result }}
cache: "npm"
- name: Install dependencies
# Legacy versions do not generate types, so skip scripts that invoke `prepare` and explicitly run the code build without generating types
run: |
npm i -D typescript@4 del-cli@^3
npm i --ignore-engines
npm i -D typescript@4 del-cli@^3 --ignore-scripts
npm i --ignore-engines --ignore-scripts
npm run build:code
Comment thread
evenstensberg marked this conversation as resolved.
if: matrix.node-version == '10.x' || matrix.node-version == '12.x' || matrix.node-version == '14.x' || matrix.node-version == '16.x' || matrix.node-version == '18.x'
- name: Install dependencies
run: npm ci
Expand Down
Loading