Merge branch 'master' into nvmrc-v19

This commit is contained in:
Ulf Gebhardt 2023-09-13 00:24:20 +02:00 committed by GitHub
commit cab41121e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 8 deletions

View File

@ -1,6 +1,6 @@
name: build test CI name: build test CI
on: push on: pull_request_target
jobs: jobs:
build-test: build-test:

View File

@ -1,6 +1,6 @@
name: lint test CI name: lint test CI
on: push on: pull_request_target
jobs: jobs:
build-test: build-test:

View File

@ -18,11 +18,11 @@ jobs:
node-version: '19' node-version: '19'
- name: vuepress-deploy - name: vuepress-deploy
uses: jenkey2011/vuepress-deploy@v1.8.1 uses: jenkey2011/vuepress-deploy@master
env: env:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
TARGET_REPO: IT4Change/IT4C.dev TARGET_REPO: IT4Change/IT4C.dev
TARGET_BRANCH: gh-pages TARGET_BRANCH: gh-pages
BUILD_SCRIPT: npm install && npm run build BUILD_SCRIPT: npm install && npm run build-node16
BUILD_DIR: docs/.vuepress/dist BUILD_DIR: docs/.vuepress/dist
CNAME: https://www.it4c.dev CNAME: https://www.it4c.dev

View File

@ -18,4 +18,4 @@ You can also join our [Telegram Channel](https://t.me/+A3XAurSG9ws3NjE6) to get
If you are looking for a developer team and you consider hiring (some of) us, please make sure to also provide a detailed project description, outlining goals, time frame, social impact and wether the project will be open- or closed source. If you are looking for a developer team and you consider hiring (some of) us, please make sure to also provide a detailed project description, outlining goals, time frame, social impact and wether the project will be open- or closed source.
We will work with you to archive your goals in a sustainable manner. We will make sure knowledge is spread within the team and we will integrate with your existing IT department to ensure scalability. We will work with you to achieve your goals in a sustainable manner. We will make sure knowledge is spread within the team and we will integrate with your existing IT department to ensure scalability.

View File

@ -5,6 +5,7 @@
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"build": "NODE_OPTIONS=--openssl-legacy-provider vuepress build docs", "build": "NODE_OPTIONS=--openssl-legacy-provider vuepress build docs",
"build-node16": "vuepress build docs",
"dev": "NODE_OPTIONS=--openssl-legacy-provider vuepress dev docs", "dev": "NODE_OPTIONS=--openssl-legacy-provider vuepress dev docs",
"test": "textlint \"*.md\" \"docs/**/*.md\"" "test": "textlint \"*.md\" \"docs/**/*.md\""
}, },