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