This repository has been archived by the owner on Nov 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: upgraded volto to 16 alpha 45 * chore: upgrades for volto16 * chore: upgraded mrs-developer * chore: upgrade dependencies * refactor: upgrade razzle config for razzle 4 * feat: added layout views i18n names * chore: removed passwordreset view backport * refactor: removed mrs-developer, deprecated @italia * chore: removed routes backports * chore: re-added our custom Image component * fix: config and sass dependencies * chore: updated locales * fix: styles after sass upgrade * chore: upgrade dependencies * chore: added test deployment config * fix: dockerfile * fix: cleanup rendering warnings * fix: workaround nested bootstrap/reboot * chore: bundlewatch removed * chore: volto16 update actions * fix: print styles compilation that broke reboot compilation * fix: test config * fix: tests * chore: customizationPaths * chore: bundle_size action * chore: remove duplicated action * chore: actions cleanup * fix: invalid comment * fix: view responsive image in gallery * fix: image intersectionobserver * fix: img responsive * fix: intersection observer simplified * chore: dockerfile + dockercompose * feat!: update volto * feat: node 16 / yarn 3 * ci: yarn 3 * ci: make * ci: yarn 3 * ci * ci: dockerfile * ci: dockerfile * ci: bundlesize * docs: docker compose update * feat: slick font removed * fix: missing image styles from plone/volto#2103 * chore: upgrade to volto 16.0.0 * build: upgraded docker base image to bullseye, cleaned up env vars * chore: removed old i18n pre-commit hook * build: use yarn 3 * build: commit hooks dependencies Co-authored-by: mamico <[email protected]>
- Loading branch information
Showing
417 changed files
with
27,199 additions
and
21,033 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,23 @@ | ||
.vscode/ | ||
logs | ||
*.log | ||
npm-debug.log* | ||
.DS_Store | ||
|
||
coverage | ||
node_modules | ||
build | ||
src/addons | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
cache | ||
coverage | ||
data | ||
omelette | ||
docker-compose.yml | ||
docker-compose.* | ||
Dockerfile | ||
.DS_Store | ||
.env.development.local | ||
.env.local | ||
.env.production.local | ||
.env.test.local | ||
.git | ||
.gitignore | ||
.history | ||
locales/*.json | ||
*.log | ||
logs | ||
node_modules | ||
npm-debug.log* | ||
omelette | ||
.vscode/ | ||
.yarn/ | ||
.yarnrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Docker build for new volto 16 version | ||
on: | ||
push: | ||
branches: [upgrade_to_volto16] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Cache Docker layers | ||
uses: actions/cache@v3 | ||
with: | ||
path: /tmp/.buildx-cache | ||
key: ${{ runner.os }}-buildx-${{ github.sha }} | ||
restore-keys: | | ||
${{ runner.os }}-buildx- | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Build and push Docker images | ||
uses: docker/build-push-action@v3 | ||
with: | ||
# List of tags | ||
tags: redturtletech/io-comune-base:volto16 | ||
pull: true | ||
# Push is a shorthand for --output=type=registry | ||
push: true | ||
builder: ${{ steps.buildx.outputs.name }} | ||
cache-from: type=local,src=/tmp/.buildx-cache | ||
cache-to: type=local,dest=/tmp/.buildx-cache | ||
|
||
- name: Deploy to rancher | ||
uses: redturtle/[email protected] | ||
with: | ||
host: ${{ secrets.RANCHER_HOST }} | ||
api-username: ${{ secrets.RANCHER_API_USERNAME }} | ||
api-password: ${{ secrets.RANCHER_API_PASSWORD }} | ||
cluster-id: ${{ secrets.RANCHER_CLUSTER_ID }} | ||
project-id: ${{ secrets.RANCHER_PROJECT_ID }} | ||
namespace: ${{ secrets.RANCHER_NAMESPACE_DEVELOP }} | ||
workload: ${{ secrets.RANCHER_WORKLOAD_VOLTO16 }} | ||
image: redturtletech/io-comune-base:volto16 | ||
slack-hook-url: ${{ secrets.RANCHER_SLACK_HOOK_URL }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
npx --no -- commitlint --edit ${1} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
npx lint-staged |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
lts/fermium | ||
lts/gallium |
Oops, something went wrong.