Skip to content

Commit

Permalink
refactor: improved readability (#22384)
Browse files Browse the repository at this point in the history
  • Loading branch information
GmBodhi authored Aug 22, 2021
1 parent e0dfbc1 commit 87f660c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ jobs:
with:
node-version: 12
- name: Install packages
run: npm ci && npm ci --prefix test
run: |
npm ci
npm ci --prefix test
- name: Build
run: npm run build

Expand All @@ -65,7 +67,10 @@ jobs:
with:
node-version: 12
- name: Install packages
run: npm ci && npm ci --prefix test && sudo apt-get install xvfb
run: |
npm ci
npm ci --prefix test
sudo apt-get install xvfb
- name: Build
run: npm run build

Expand Down

0 comments on commit 87f660c

Please sign in to comment.