Set mirror_plugins_assets_on_startup to false #166
Workflow file for this run
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
name: validation | |
on: | |
- push | |
jobs: | |
lint_ruby: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '2.7' | |
- name: Install gems | |
run: gem install rubocop | |
- name: Lint | |
run: rubocop | |
test_ruby: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Test Redmine Plugin | |
uses: two-pack/redmine-plugin-test-action@v2 | |
with: | |
plugin_name: toggl2redmine | |
redmine_version: v4.0 | |
ruby_version: v2.7 | |
database: mysql | |
check_javascript: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Install node packages | |
working-directory: ./assets.src | |
run: npm install | |
- name: Lint | |
working-directory: ./assets.src | |
run: npm run lint | |
- name: Test | |
working-directory: ./assets.src | |
run: npm run test |