0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-05 21:16:17 +08:00
discourse/.github/workflows/linting.yml
Workflow config file is invalid. Please check your config file: Line: 18 Column 5: Failed to match job-factory: Line: 71 Column 9: Failed to match run-step: Line: 71 Column 9: Unknown Property parallel Line: 71 Column 9: Failed to match regular-step: Line: 71 Column 9: Unknown Property parallel Line: 18 Column 5: Failed to match workflow-job: Line: 22 Column 5: Unknown Property timeout-minutes Line: 24 Column 5: Unknown Property steps Forgejo Actions YAML Schema validation error
Alan Guo Xiang Tan 60f2eb9daf
DEV: Run independent CI checks in parallel (#41640)
This PR uses GitHub Actions [parallel
steps](https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsparallel)
to reduce wall-clock time in the linting and test workflows.
2026-07-13 10:55:28 +08:00

106 lines
3.3 KiB
YAML
Vendored

name: Linting
on:
pull_request:
push:
branches:
- main
concurrency:
group: linting-${{ format('{0}-{1}', github.head_ref || github.run_number, github.job) }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
if: github.event_name == 'pull_request' || github.repository != 'discourse/discourse-private-mirror'
name: run
runs-on: ${{ (github.repository_owner == 'discourse' && 'cdck-linux-8-core') || 'ubuntu-latest' }}
container: discourse/discourse_test:release
timeout-minutes: 30
steps:
- name: Set working directory owner
run: chown root:root .
- uses: actions/checkout@v7
with:
fetch-depth: 1
- name: Setup Git
run: |
git config --global user.email "ci@ci.invalid"
git config --global user.name "Discourse CI"
- name: Symlink vendor/bundle from image
run: |
ln -s /var/www/discourse/vendor/bundle vendor/bundle
- name: Setup gems
run: |
bundle config --local path vendor/bundle
bundle config --local deployment true
bundle config --local without development
bundle config --local lockfile_checksums true
# Drop the prebuilt bundler so `bundle install` re-fetches it, caching the .gem its checksum line needs
rm -rf vendor/bundle/ruby/*/gems/bundler-* vendor/bundle/ruby/*/specifications/bundler-*
bundle install --jobs 4
bundle clean
- name: pnpm install
run: pnpm install --frozen-lockfile
- name: Bundler checksums
if: ${{ !cancelled() }}
shell: bash
run: |
bundle lock --add-checksums
bundle lock --normalize-platforms
if [[ $(git status -s Gemfile.lock) ]]; then
echo "Gemfile.lock is not up to date. To resolve, run:"
echo " bundle lock --add-checksums && bundle lock --normalize-platforms"
echo
echo "Or manually apply the diff printed below:"
echo "---------------------------------------------"
git -c color.ui=always diff Gemfile.lock
exit 1
fi
- parallel:
- name: Rubocop
if: ${{ !cancelled() }}
run: bundle exec rubocop
- name: syntax_tree
if: ${{ !cancelled() }}
run: |
set -E
bundle exec stree check Gemfile $(git ls-files '*.rb') $(git ls-files '*.rake') $(git ls-files '*.thor')
- name: ESLint
if: ${{ !cancelled() }}
run: pnpm lint:js
- name: Types
if: ${{ !cancelled() }}
run: pnpm lint:types
- name: Prettier
if: ${{ !cancelled() }}
run: |
pnpm prettier -v
pnpm lint:prettier
- name: Stylelint
if: ${{ !cancelled() }}
run: pnpm lint:css
- name: English locale lint (core)
if: ${{ !cancelled() }}
run: bundle exec ruby script/i18n_lint.rb "config/**/locales/{client,server}.en.yml"
- name: English locale lint (core plugins)
if: ${{ !cancelled() }}
run: bundle exec ruby script/i18n_lint.rb "plugins/**/locales/{client,server}.en.yml"