mirror of
https://github.com/IT4Change/IT4C.dev.git
synced 2025-12-13 09:25:49 +00:00
Merge branch 'master' into 16-devops-evaluate-theme-hope
This commit is contained in:
commit
bc04334868
20
.github/dependabot.yml
vendored
Normal file
20
.github/dependabot.yml
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
version: 2
|
||||||
|
updates:
|
||||||
|
|
||||||
|
- package-ecosystem: "github-actions"
|
||||||
|
directory: "/"
|
||||||
|
rebase-strategy: "disabled"
|
||||||
|
schedule:
|
||||||
|
interval: weekly
|
||||||
|
day: "saturday"
|
||||||
|
timezone: "Europe/Berlin"
|
||||||
|
time: "03:00"
|
||||||
|
|
||||||
|
- package-ecosystem: npm
|
||||||
|
directory: "/"
|
||||||
|
rebase-strategy: "disabled"
|
||||||
|
schedule:
|
||||||
|
interval: weekly
|
||||||
|
day: "saturday"
|
||||||
|
timezone: "Europe/Berlin"
|
||||||
|
time: "03:00"
|
||||||
3
.github/webhooks/deploy.sh
vendored
3
.github/webhooks/deploy.sh
vendored
@ -21,9 +21,10 @@ fi
|
|||||||
# Build the project
|
# Build the project
|
||||||
cd $PROJECT_ROOT
|
cd $PROJECT_ROOT
|
||||||
rm -R $BUILD_DIR
|
rm -R $BUILD_DIR
|
||||||
|
npm install
|
||||||
npm run build
|
npm run build
|
||||||
|
|
||||||
# Copy files and Sym link
|
# Copy files and Sym link
|
||||||
mkdir $DEPLOY_DIR_REF/
|
mkdir $DEPLOY_DIR_REF/
|
||||||
cp -r $BUILD_DIR/* $DEPLOY_DIR_REF/
|
cp -r $BUILD_DIR/* $DEPLOY_DIR_REF/
|
||||||
ln -sf $DEPLOY_DIR_REF $DEPLOY_DIR
|
ln -sfn $DEPLOY_DIR_REF $DEPLOY_DIR
|
||||||
1
.github/workflows/lint_pr.yml
vendored
1
.github/workflows/lint_pr.yml
vendored
@ -11,6 +11,7 @@ jobs:
|
|||||||
main:
|
main:
|
||||||
name: Validate PR title
|
name: Validate PR title
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.actor != 'dependabot[bot]' }}
|
||||||
steps:
|
steps:
|
||||||
- uses: amannn/action-semantic-pull-request@v5
|
- uses: amannn/action-semantic-pull-request@v5
|
||||||
env:
|
env:
|
||||||
|
|||||||
2
.github/workflows/test-build.yml
vendored
2
.github/workflows/test-build.yml
vendored
@ -8,7 +8,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Setup Node 19
|
- name: Setup Node 19
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
|
|||||||
2
.github/workflows/test-lint.yml
vendored
2
.github/workflows/test-lint.yml
vendored
@ -8,7 +8,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Setup Node 19
|
- name: Setup Node 19
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
|
|||||||
2
.github/workflows/vuepress-deploy.yml
vendored
2
.github/workflows/vuepress-deploy.yml
vendored
@ -25,4 +25,4 @@ jobs:
|
|||||||
TARGET_BRANCH: gh-pages
|
TARGET_BRANCH: gh-pages
|
||||||
BUILD_SCRIPT: npm install && npm run build-node16
|
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
|
||||||
2706
package-lock.json
generated
2706
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -21,12 +21,12 @@
|
|||||||
"homepage": "https://github.com/IT4Change/IT4C.dev#readme",
|
"homepage": "https://github.com/IT4Change/IT4C.dev#readme",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@textlint-rule/textlint-rule-no-unmatched-pair": "^1.0.9",
|
"@textlint-rule/textlint-rule-no-unmatched-pair": "^1.0.9",
|
||||||
"textlint": "^13.3.0",
|
"textlint": "^13.3.3",
|
||||||
"textlint-filter-rule-comments": "^1.2.2",
|
"textlint-filter-rule-comments": "^1.2.2",
|
||||||
"textlint-rule-apostrophe": "^2.0.0",
|
"textlint-rule-apostrophe": "^2.0.0",
|
||||||
"textlint-rule-common-misspellings": "^1.0.1",
|
"textlint-rule-common-misspellings": "^1.0.1",
|
||||||
"textlint-rule-doubled-spaces": "^1.0.1",
|
"textlint-rule-doubled-spaces": "^1.0.2",
|
||||||
"textlint-rule-max-comma": "^2.0.2",
|
"textlint-rule-max-comma": "^3.0.1",
|
||||||
"textlint-rule-no-dead-link": "^5.1.2",
|
"textlint-rule-no-dead-link": "^5.1.2",
|
||||||
"textlint-rule-no-empty-element": "^0.3.1",
|
"textlint-rule-no-empty-element": "^0.3.1",
|
||||||
"textlint-rule-no-empty-section": "^1.1.0",
|
"textlint-rule-no-empty-section": "^1.1.0",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user