Skip to content

Commit

Permalink
ci: set node version in workflows to fit Angular CLI requires
Browse files Browse the repository at this point in the history
  • Loading branch information
boeckMt committed May 16, 2022
1 parent da1260d commit 99d2f8e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/package-main-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
git checkout ${{ needs.checkTitelTag.outputs.VERSION_TAG }}
- uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16
- run: rm -f .npmrc
- uses: ./.github/actions/check-tag-on-npm
with:
Expand All @@ -88,7 +88,7 @@ jobs:
git checkout ${{ needs.checkTitelTag.outputs.VERSION_TAG }}
- uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16
- name: build
run: |
npm ci
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
path: dist
- uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16
registry-url: https://npm.pkg.github.com/
scope: "@dlr-eoc"
- run: npm ci
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
path: dist
- uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16
registry-url: https://registry.npmjs.org/
scope: "@dlr-eoc"
- run: npm ci
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/package-pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16
- run: rm -f .npmrc
- uses: ./.github/actions/check-tag-on-npm
with:
Expand All @@ -41,7 +41,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16
- uses: ./.github/actions/build-test
- name: Archive dist artifacts
uses: actions/upload-artifact@v2
Expand All @@ -61,7 +61,7 @@ jobs:
path: dist
- uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16
registry-url: https://npm.pkg.github.com/
scope: "@dlr-eoc"
- run: npm ci
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
path: dist
- uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16
registry-url: https://registry.npmjs.org/
scope: "@dlr-eoc"
- run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16
- uses: ./.github/actions/test
- uses: ./.github/actions/build

0 comments on commit 99d2f8e

Please sign in to comment.