Skip to content

Commit 32810c3

Browse files
Stop installing unnecessary dependencies on testing workflow
1 parent 84a1410 commit 32810c3

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/backstopjs.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,14 @@ jobs:
1818
with:
1919
node-version: 16.x
2020

21-
- name: Install BackstopJS dependencies if testing locally
21+
- name: Install Puppeteer dependencies if testing locally
2222
if: ${{ env.ACT }}
2323
run: |
2424
sudo apt update
2525
sudo apt install libnss3-dev libgdk-pixbuf2.0-dev libgtk-3-dev libxss-dev libasound2 -y
2626
27-
- name: Install BackstopJS
28-
# express is already isntalled
29-
run: npm install backstopjs
27+
- name: Install dependencies
28+
run: npm install
3029

3130
- name: Run the tests
3231
run: npm test

0 commit comments

Comments
 (0)