Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update CI #8614

Merged
merged 1 commit into from Jul 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Expand Up @@ -32,5 +32,5 @@ jobs:
git config --global user.name 'release-please[bot]'
git config --global user.email '55107282+release-please[bot]@users.noreply.github.com'
git add .
git commit -m 'chore: generated versioned docs'
git commit -m 'chore: generate versioned docs'
git push --no-verify