al-quran.reflectslight.io/.github/actions/prepare-env/action.yml

21 lines
354 B
YAML
Raw Normal View History

name: Prepare environment
runs:
using: composite
steps:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
2024-06-21 00:03:47 +02:00
ruby-version: 3.3
- name: Setup NodeJS
uses: actions/setup-node@v2
with:
node-version: 16
cache: npm
- name: Setup packages
shell: bash
run: |
ruby -S bundle install
npm install