Instalando Gitlab CI, NodeJS, Yarn e Expo no RHEL 7
GitLab CI
Seguir instruções do site do GitLab no Link Aqui.
NodeJS
subscription-manager repos --enable rhel-server-rhscl-7-rpms
subscription-manager repos --enable rhel-7-server-optional-rpms
sudo yum update
sudo yum install rh-nodejs12
Adiciona a linha abaixo no arquivo ~/.bash_profile:
source scl_source enable rh-nodejs12
Verificar instalação:
node --version
Yarn
Tutorial em https://classic.yarnpkg.com/en/docs/install/#centos-stable.
curl --silent --location https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo
sudo yum install yarn
yarn --version
Expo
npm install expo-cli --global
No Comments