Skip to content

Commit

Permalink
chore: update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jrandolf committed Jul 1, 2022
1 parent 8cf10fb commit 654e64b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -65,7 +65,11 @@ jobs:
- name: Build
run: npm run docs
- name: Check if autogenerated docs differ
run: $(git diff) || exit 1
run: |
if [[ $(git diff) ]]; then
echo "Please update the documentation by running 'npm run docs'"
exit 1
fi
- name: Check if docs need to be deployed
id: needs_deploying
run: |
Expand Down Expand Up @@ -172,6 +176,7 @@ jobs:
if: ${{ steps.test-chrome.conclusion != 'skipped' }}
run: npm run test:firefox
- name: Test bundling and installation
if: ${{ matrix.spec.name == 'Linux' }}
run: |
# Note: this modifies package.json to test puppeteer-core, so we test this last.
npm run test:install

0 comments on commit 654e64b

Please sign in to comment.