14 Commits

Author SHA1 Message Date
argoyle c8e4579ac6 fix: add pipx bin-dir to PATH 2024-04-08 08:09:40 +02:00
argoyle 86c8c7659a Merge branch 'renovate/node-20.x' into 'main'
chore(deps): update node.js to v20.12.1

See merge request unboundsoftware/pre-commit-node!5
2024-04-07 16:43:54 +00:00
Renovate e9dc641b68 chore(deps): update node.js to v20.12.1 2024-04-06 16:53:21 +00:00
argoyle caed076db6 ci: update to node 20.9.0 2024-04-06 16:48:11 +02:00
argoyle 8d5df03ad5 ci: remove Dependabot config 2024-02-26 09:17:45 +01:00
argoyle 90eba865cf Merge branch 'renovate/node-20.x' into 'main'
chore(deps): update node.js to v20

See merge request unboundsoftware/pre-commit-node!4
2024-02-24 11:45:16 +00:00
Renovate c75e88a6f3 chore(deps): update node.js to v20 2024-02-24 00:51:22 +00:00
argoyle 9fb6ded315 Merge branch 'renovate/configure' into 'main'
chore: Configure Renovate

See merge request unboundsoftware/pre-commit-node!3
2024-02-24 00:31:48 +00:00
Renovate 28b10a5452 Add renovate.json 2024-02-24 01:26:48 +01:00
argoyle 342e639b24 fix: install pre-commit with pipx 2024-02-24 01:26:40 +01:00
argoyle 712375c502 build(deps): bump node from 18 to 20
Bumps node from 18 to 20.
2023-06-08 16:04:56 +02:00
argoyle 88bfb3caeb ci: add dependabot config 2023-06-08 13:31:56 +02:00
argoyle 125084cab6 feat: upgrade to Node 18 2023-02-22 13:02:39 +01:00
argoyle 2c6ff89a47 ci: use Docker DinD version from variable 2023-02-09 21:55:35 +01:00
3 changed files with 17 additions and 9 deletions
+6 -6
View File
@@ -14,22 +14,22 @@ image: buildtool/build-tools:${BUILDTOOLS_VERSION}
build: build:
stage: build stage: build
services: services:
- docker:dind - docker:${DOCKER_DIND_VERSION}
script: script:
- unset BUILDTOOLS_CONTENT - unset BUILDTOOLS_CONTENT
- build - build
- push - push
prepare_release: prepare_release:
image: node:18 image: node:20
stage: prepare stage: prepare
before_script: before_script:
- npm install -g conventional-changelog-cli - npm install -g conventional-changelog-cli
script: script:
- echo "DESCRIPTION=$(conventional-changelog -p conventionalcommits)" > variables.env - conventional-changelog -p conventionalcommits > ./release.description
artifacts: artifacts:
reports: paths:
dotenv: variables.env - release.description
rules: rules:
- if: $CI_COMMIT_TAG - if: $CI_COMMIT_TAG
@@ -43,6 +43,6 @@ release:
- echo "Running release_job for $TAG" - echo "Running release_job for $TAG"
release: release:
tag_name: '$CI_COMMIT_TAG' tag_name: '$CI_COMMIT_TAG'
description: '$DESCRIPTION' description: ./release.description
rules: rules:
- if: $CI_COMMIT_TAG - if: $CI_COMMIT_TAG
+5 -3
View File
@@ -1,6 +1,8 @@
FROM node:16 FROM node:20.12.1
ENV PATH=${PATH}:/root/.local/bin
RUN apt update && \ RUN apt update && \
apt install -y python3 python3-pip ruby git && \ apt install -y python3 python3-pip ruby git pipx && \
rm -rf /var/lib/apt/lists/* && \ rm -rf /var/lib/apt/lists/* && \
pip3 install pre-commit pipx install pre-commit
+6
View File
@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
}