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

20 lines
354 B
YAML

name: Prepare environment
runs:
using: composite
steps:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
- 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