diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index ea93015..662b7e9 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -1,6 +1,6 @@ name: build test CI -on: push +on: pull_request_target jobs: build-test: diff --git a/.github/workflows/test-lint.yml b/.github/workflows/test-lint.yml index 24e97fe..e1d6812 100644 --- a/.github/workflows/test-lint.yml +++ b/.github/workflows/test-lint.yml @@ -1,6 +1,6 @@ name: lint test CI -on: push +on: pull_request_target jobs: build-test: diff --git a/.github/workflows/vuepress-deploy.yml b/.github/workflows/vuepress-deploy.yml index e20cc8d..fe34346 100644 --- a/.github/workflows/vuepress-deploy.yml +++ b/.github/workflows/vuepress-deploy.yml @@ -13,16 +13,16 @@ jobs: uses: actions/checkout@master - name: Setup Node 19 - uses: actions/setup-node@v3 - with: - node-version: '19' + uses: actions/setup-node@v3 + with: + node-version: '19' - name: vuepress-deploy - uses: jenkey2011/vuepress-deploy@v1.8.1 + uses: jenkey2011/vuepress-deploy@master env: ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} TARGET_REPO: IT4Change/IT4C.dev TARGET_BRANCH: gh-pages - BUILD_SCRIPT: npm install && npm run build + BUILD_SCRIPT: npm install && npm run build-node16 BUILD_DIR: docs/.vuepress/dist CNAME: https://www.it4c.dev \ No newline at end of file diff --git a/docs/contact.md b/docs/contact.md index f1dbe1e..2b0e5fc 100644 --- a/docs/contact.md +++ b/docs/contact.md @@ -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. -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. \ No newline at end of file +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. diff --git a/package.json b/package.json index f3edd6f..4414e78 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "main": "index.js", "scripts": { "build": "NODE_OPTIONS=--openssl-legacy-provider vuepress build docs", + "build-node16": "vuepress build docs", "dev": "NODE_OPTIONS=--openssl-legacy-provider vuepress dev docs", "test": "textlint \"*.md\" \"docs/**/*.md\"" },