-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New design with TailwindCSS, contents, and gems (#304)
Co-authored-by: Hugoren Martinako <[email protected]>
- Loading branch information
1 parent
4e94a97
commit 29484fa
Showing
467 changed files
with
27,992 additions
and
27,617 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,48 @@ | ||
name: "[CI] Main folder" | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches-ignore: | ||
- "chore/l10n*" | ||
|
||
env: | ||
CI: "true" | ||
RUBY_VERSION: 3.1.1 | ||
NODE_VERSION: 16.9.1 | ||
|
||
concurrency: | ||
group: ${{ github.head_ref || github.ref_name }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
main: | ||
name: Tests | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 60 | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
fetch-depth: 1 | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: ${{ env.RUBY_VERSION }} | ||
bundler-cache: true | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ env.NODE_VERSION }} | ||
- name: Get npm cache directory path | ||
id: npm-cache-dir-path | ||
run: echo "::set-output name=dir::$(npm get cache)-main" | ||
- uses: actions/cache@v2 | ||
id: npm-cache | ||
with: | ||
path: ${{ steps.npm-cache-dir-path.outputs.dir }} | ||
key: npm-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
npm- | ||
- name: Install JS dependencies | ||
run: npm ci | ||
- run: bundle exec rspec | ||
name: RSpec |
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
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 @@ | ||
lts/* |
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 @@ | ||
--require spec_helper |
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,13 @@ | ||
inherit_from: https://raw.githubusercontent.com/decidim/decidim/develop/.rubocop.yml | ||
|
||
AllCops: | ||
Include: | ||
- "**/*.rb" | ||
- "**/*.rake" | ||
- "**/*.ru" | ||
- "**/Gemfile" | ||
- "**/Rakefile" | ||
Exclude: | ||
- "node_modules/**/*" | ||
- "db/schema.rb" | ||
- "vendor/**/*" |
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 |
---|---|---|
@@ -1 +1 @@ | ||
2.7.1 | ||
3.1.2 |
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
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 |
---|---|---|
@@ -1,16 +1,24 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'middleman', '~> 4.3' | ||
gem 'middleman-autoprefixer', '~> 2.7' | ||
gem 'middleman', '~> 4.4' | ||
gem 'middleman-livereload', '~> 3.4' | ||
gem 'tzinfo-data', platforms: [:mswin, :mingw, :jruby] | ||
gem 'wdm', '~> 0.1', platforms: [:mswin, :mingw] | ||
gem "rubocop", "~> 1.31" | ||
gem "i18n-tasks", "~> 1.0" | ||
|
||
gem 'middleman-blog', '~> 4.0' | ||
gem 'redcarpet', '~> 3.5' | ||
gem 'nokogiri', '~> 1.13.6' | ||
gem 'builder', '~> 3.0' | ||
gem "debug", "~> 1.6" | ||
|
||
gem 'middleman-images', '~> 0.2' | ||
gem 'mini_magick', '~> 4.11' | ||
gem 'image_optim', '~> 0.30' | ||
|
||
group :test do | ||
gem 'rake', '~> 13.0' | ||
gem 'rspec', '~> 3.11' | ||
gem 'capybara', '~> 3.37' | ||
end |
Oops, something went wrong.