Open docs(v2): Indent code example to improve readability (#5152)

This commit is contained in:
Raz Luvaton 2021-07-13 11:09:19 +03:00 committed by GitHub
parent dd035088c6
commit d1f3a3631a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -214,11 +214,11 @@ jobs:
- name: Test Build - name: Test Build
run: | run: |
if [ -e yarn.lock ]; then if [ -e yarn.lock ]; then
yarn install --frozen-lockfile yarn install --frozen-lockfile
elif [ -e package-lock.json ]; then elif [ -e package-lock.json ]; then
npm ci npm ci
else else
npm i npm i
fi fi
npm run build npm run build
gh-release: gh-release:
@ -240,11 +240,11 @@ jobs:
git config --global user.email "actions@github.com" git config --global user.email "actions@github.com"
git config --global user.name "gh-actions" git config --global user.name "gh-actions"
if [ -e yarn.lock ]; then if [ -e yarn.lock ]; then
yarn install --frozen-lockfile yarn install --frozen-lockfile
elif [ -e package-lock.json ]; then elif [ -e package-lock.json ]; then
npm ci npm ci
else else
npm i npm i
fi fi
npm run deploy npm run deploy
``` ```