al-quran_kaios/rake/tasks/ci.rake

23 lines
367 B
Ruby
Raw Normal View History

2024-10-17 04:57:13 +02:00
# frozen_string_literal: true
namespace :ci do
task :rubocop do
sh "bundle exec rubocop -c etc/rubocop.yml"
end
task :eslint do
sh "npm run eslint"
end
task :tsc do
sh "npm run tsc"
end
task :env do
ENV["buildenv"] = "production"
end
end
desc "Run CI tasks"
task ci: %i[ci:env ci:rubocop ci:eslint ci:tsc nanoc:clean nanoc:build]