Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dockerfile base to node:20-alpine #129

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Fixing Circleci build limits
  • Loading branch information
jcortejoso committed Jan 11, 2024
commit e19fab76b22c49d9e9dd2750ebf01cda3b0236dc
11 changes: 8 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ jobs:
# fallback to using the latest cache if no exact match is found
- v2-dependencies-
- run:
command: yarn
command: |
yarn
environment:
NODE_ENV: --openssl-legacy-provider
- save_cache:
Expand All @@ -59,7 +60,9 @@ jobs:
- checkout
- *CHECKOUT-WORKSPACE
- run:
command: yarn test
command: |
yarn run ngcc:sync
yarn test
environment:
NODE_ENV: --openssl-legacy-provider
- store_test_results:
Expand All @@ -77,7 +80,9 @@ jobs:
- checkout
- *CHECKOUT-WORKSPACE
- run:
command: yarn lint
command: |
npx ng run --async false
yarn lint
environment:
NODE_ENV: --openssl-legacy-provider
# Build
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "0.0.0",
"scripts": {
"ng": "ng",
"ngcc:sync": "ngcc --async=false",
"start": "ng serve",
"build": "ng build --prod",
"test": "ng test --no-watch --code-coverage",
Expand Down