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
Fix ci
  • Loading branch information
jcortejoso committed Jan 11, 2024
commit 692941df4cdd10458e50b758cc9c7783cc5be347
6 changes: 5 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ orbs:
browser-tools: circleci/[email protected]

workflows:
version: 2
version: 2s
CI:
jobs:
- npm-install
Expand Down Expand Up @@ -36,6 +36,7 @@ jobs:
npm-install:
<<: *NODE
steps:
- browser-tools/install-browser-tools
- checkout
- *CHECKOUT-WORKSPACE
- restore_cache:
Expand All @@ -60,6 +61,7 @@ jobs:
test:
<<: *NODE
steps:
- browser-tools/install-browser-toolss
- checkout
- *CHECKOUT-WORKSPACE
- run:
Expand All @@ -79,6 +81,7 @@ jobs:
lint:
<<: *NODE
steps:
- browser-tools/install-browser-tools
- checkout
- *CHECKOUT-WORKSPACE
- run:
Expand All @@ -90,6 +93,7 @@ jobs:
build-app:
<<: *NODE
steps:
- browser-tools/install-browser-tools
- checkout
- *CHECKOUT-WORKSPACE
- run:
Expand Down