DEV: Update CI workflows (#36)
* DEV: Update CI workflows * DEV: Fix linting Co-authored-by: Justin DiRose <justin@justindirose.com> Co-authored-by: Jarek Radosz <jradosz@gmail.com>
This commit is contained in:
parent
088b8d2239
commit
8036dba315
|
@ -34,7 +34,7 @@ jobs:
|
||||||
run: yarn install --dev
|
run: yarn install --dev
|
||||||
|
|
||||||
- name: ESLint
|
- name: ESLint
|
||||||
run: yarn eslint --ext .js,.js.es6 --no-error-on-unmatched-pattern assets/javascripts
|
run: yarn eslint --ext .js,.js.es6 --no-error-on-unmatched-pattern {test,assets}/javascripts
|
||||||
|
|
||||||
- name: Prettier
|
- name: Prettier
|
||||||
run: |
|
run: |
|
||||||
|
@ -42,6 +42,9 @@ jobs:
|
||||||
if [ -d "assets" ]; then \
|
if [ -d "assets" ]; then \
|
||||||
yarn prettier --list-different "assets/**/*.{scss,js,es6}" ; \
|
yarn prettier --list-different "assets/**/*.{scss,js,es6}" ; \
|
||||||
fi
|
fi
|
||||||
|
if [ -d "test" ]; then \
|
||||||
|
yarn prettier --list-different "test/**/*.{js,es6}" ; \
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Rubocop
|
- name: Rubocop
|
||||||
run: bundle exec rubocop .
|
run: bundle exec rubocop .
|
||||||
|
|
|
@ -9,15 +9,13 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: "${{ matrix.target }}-${{ matrix.build_types }}"
|
name: ${{ matrix.build_type }}
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
|
|
||||||
env:
|
env:
|
||||||
DISCOURSE_HOSTNAME: www.example.com
|
DISCOURSE_HOSTNAME: www.example.com
|
||||||
RUBY_GLOBAL_METHOD_CACHE_SIZE: 131072
|
RUBY_GLOBAL_METHOD_CACHE_SIZE: 131072
|
||||||
BUILD_TYPE: ${{ matrix.build_types }}
|
|
||||||
TARGET: ${{ matrix.target }}
|
|
||||||
RAILS_ENV: test
|
RAILS_ENV: test
|
||||||
PGHOST: localhost
|
PGHOST: localhost
|
||||||
PGUSER: discourse
|
PGUSER: discourse
|
||||||
|
@ -27,8 +25,7 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
build_types: ["BACKEND", "FRONTEND"]
|
build_type: ["backend", "frontend"]
|
||||||
target: ["PLUGINS"]
|
|
||||||
os: [ubuntu-latest]
|
os: [ubuntu-latest]
|
||||||
ruby: ["2.6"]
|
ruby: ["2.6"]
|
||||||
postgres: ["12"]
|
postgres: ["12"]
|
||||||
|
@ -85,7 +82,7 @@ jobs:
|
||||||
wget -qO- https://raw.githubusercontent.com/discourse/discourse_docker/master/image/base/install-pngquant | sudo sh
|
wget -qO- https://raw.githubusercontent.com/discourse/discourse_docker/master/image/base/install-pngquant | sudo sh
|
||||||
|
|
||||||
- name: Update imagemagick
|
- name: Update imagemagick
|
||||||
if: env.BUILD_TYPE == 'BACKEND'
|
if: matrix.build_type == 'backend'
|
||||||
run: |
|
run: |
|
||||||
wget https://raw.githubusercontent.com/discourse/discourse_docker/master/image/base/install-imagemagick
|
wget https://raw.githubusercontent.com/discourse/discourse_docker/master/image/base/install-imagemagick
|
||||||
chmod +x install-imagemagick
|
chmod +x install-imagemagick
|
||||||
|
@ -140,28 +137,11 @@ jobs:
|
||||||
bin/rake db:create
|
bin/rake db:create
|
||||||
bin/rake db:migrate
|
bin/rake db:migrate
|
||||||
|
|
||||||
- name: Create parallel databases
|
|
||||||
if: env.BUILD_TYPE == 'BACKEND' && env.TARGET == 'CORE'
|
|
||||||
run: |
|
|
||||||
bin/rake parallel:create
|
|
||||||
bin/rake parallel:migrate
|
|
||||||
|
|
||||||
- name: Core RSpec
|
|
||||||
if: env.BUILD_TYPE == 'BACKEND' && env.TARGET == 'CORE'
|
|
||||||
run: |
|
|
||||||
bin/turbo_rspec
|
|
||||||
bin/rake plugin:spec
|
|
||||||
|
|
||||||
- name: Plugin RSpec
|
- name: Plugin RSpec
|
||||||
if: env.BUILD_TYPE == 'BACKEND' && env.TARGET == 'PLUGINS' && steps.check_spec.outputs.files_exists == 'true'
|
if: matrix.build_type == 'backend' && steps.check_spec.outputs.files_exists == 'true'
|
||||||
run: bin/rake plugin:spec[${{ github.event.repository.name }}]
|
run: bin/rake plugin:spec[${{ github.event.repository.name }}]
|
||||||
|
|
||||||
- name: Core QUnit
|
|
||||||
if: env.BUILD_TYPE == 'FRONTEND' && env.TARGET == 'CORE'
|
|
||||||
run: bundle exec rake qunit:test['1200000']
|
|
||||||
timeout-minutes: 30
|
|
||||||
|
|
||||||
- name: Plugin QUnit
|
- name: Plugin QUnit
|
||||||
if: env.BUILD_TYPE == 'FRONTEND' && env.TARGET == 'PLUGINS' && steps.check_qunit.outputs.files_exists == 'true'
|
if: matrix.build_type == 'frontend' && steps.check_qunit.outputs.files_exists == 'true'
|
||||||
run: bundle exec rake plugin:qunit['${{ github.event.repository.name }}','1200000']
|
run: bundle exec rake plugin:qunit['${{ github.event.repository.name }}','1200000']
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
|
|
Loading…
Reference in New Issue