2022-05-31 12:55:46 +00:00
|
|
|
name: CI
|
2021-01-12 10:48:33 +00:00
|
|
|
|
2022-02-15 14:50:51 +00:00
|
|
|
# Declare default permissions as read only.
|
|
|
|
permissions: read-all
|
|
|
|
|
2021-01-12 10:48:33 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
branches:
|
2022-06-23 07:12:51 +00:00
|
|
|
- '**'
|
2021-01-12 10:48:33 +00:00
|
|
|
|
2022-05-30 09:49:19 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2021-01-12 10:48:33 +00:00
|
|
|
jobs:
|
2022-07-01 13:03:12 +00:00
|
|
|
inspect-code:
|
2023-01-20 10:37:11 +00:00
|
|
|
name: '[Required] Inspect code'
|
2022-07-01 13:03:12 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-10-06 10:44:45 +00:00
|
|
|
- name: Check out repository
|
2023-01-20 10:37:11 +00:00
|
|
|
uses: actions/checkout@v3.3.0
|
2022-07-01 13:03:12 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
|
|
|
- name: Set up Node.js
|
2022-10-17 12:10:52 +00:00
|
|
|
uses: actions/setup-node@v3.5.1
|
2022-07-01 13:03:12 +00:00
|
|
|
with:
|
2022-10-06 13:45:22 +00:00
|
|
|
cache: npm
|
2023-03-15 12:59:42 +00:00
|
|
|
node-version: lts/*
|
2022-07-01 13:03:12 +00:00
|
|
|
- name: Install dependencies
|
2023-03-10 07:52:48 +00:00
|
|
|
run: npm ci
|
|
|
|
env:
|
|
|
|
PUPPETEER_SKIP_DOWNLOAD: true
|
2023-04-05 11:27:03 +00:00
|
|
|
# Set up GitHub Actions caching for Wireit.
|
|
|
|
- uses: google/wireit@setup-github-actions-caching/v1
|
2022-07-01 13:03:12 +00:00
|
|
|
- name: Check code
|
|
|
|
run: npm run check
|
|
|
|
- name: Lint code
|
|
|
|
run: npm run lint
|
2023-03-23 09:22:52 +00:00
|
|
|
- name: Validate licenses
|
|
|
|
run: npm run validate-licenses
|
2022-07-01 13:03:12 +00:00
|
|
|
- name: Lint commits
|
|
|
|
run: npm run commitlint
|
|
|
|
if: github.event_name != 'pull_request'
|
2023-02-02 10:18:17 +00:00
|
|
|
- name: Build every package
|
|
|
|
run: npm run build
|
2023-01-20 10:37:11 +00:00
|
|
|
- name: Generate documents
|
|
|
|
run: npm run docs
|
|
|
|
- name: Check if autogenerated docs differ
|
|
|
|
run: |
|
|
|
|
diff_file=$(mktemp doc_diff_XXXXXX)
|
|
|
|
git diff --color > $diff_file
|
|
|
|
if [[ -s $diff_file ]]; then
|
|
|
|
echo "Please update the documentation by running 'npm run docs'. The following was the diff"
|
|
|
|
cat $diff_file
|
|
|
|
rm $diff_file
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
rm $diff_file
|
2022-07-01 13:03:12 +00:00
|
|
|
|
2023-01-19 12:53:43 +00:00
|
|
|
check-changes:
|
2023-03-06 11:28:58 +00:00
|
|
|
needs: inspect-code
|
2023-02-23 15:37:36 +00:00
|
|
|
uses: ./.github/workflows/changed-packages.yml
|
2023-03-22 09:47:22 +00:00
|
|
|
with:
|
|
|
|
check-mergeable-state: true
|
2022-07-01 11:52:39 +00:00
|
|
|
|
|
|
|
deploy-docs:
|
2023-01-19 12:53:43 +00:00
|
|
|
needs: check-changes
|
2022-07-01 11:52:39 +00:00
|
|
|
name: Deploy docs (if needed)
|
2023-01-19 12:53:43 +00:00
|
|
|
if: ${{ github.event_name != 'pull_request' && contains(fromJSON(needs.check-changes.outputs.changes), 'website') }}
|
2022-07-01 11:52:39 +00:00
|
|
|
runs-on: ubuntu-latest
|
2022-07-05 13:06:10 +00:00
|
|
|
permissions:
|
|
|
|
contents: write
|
2022-07-01 11:52:39 +00:00
|
|
|
steps:
|
2022-10-06 10:44:45 +00:00
|
|
|
- name: Check out repository
|
2023-01-20 10:37:11 +00:00
|
|
|
uses: actions/checkout@v3.3.0
|
2022-07-01 11:52:39 +00:00
|
|
|
- name: Set up Node.js
|
2022-10-17 12:10:52 +00:00
|
|
|
uses: actions/setup-node@v3.5.1
|
2022-07-01 11:52:39 +00:00
|
|
|
with:
|
|
|
|
cache: npm
|
2023-03-15 12:59:42 +00:00
|
|
|
node-version: lts/*
|
2022-07-01 11:52:39 +00:00
|
|
|
- name: Install dependencies
|
|
|
|
working-directory: ./website
|
|
|
|
run: npm ci
|
|
|
|
- name: Build website
|
|
|
|
working-directory: ./website
|
2022-07-20 09:18:02 +00:00
|
|
|
env:
|
2022-08-02 12:05:44 +00:00
|
|
|
NODE_OPTIONS: --max-old-space-size=6144
|
2022-07-01 11:52:39 +00:00
|
|
|
run: npm run build
|
|
|
|
- name: Deploy to GitHub Pages
|
|
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
publish_dir: ./website/build
|
|
|
|
user_name: release-please[bot]
|
|
|
|
user_email: 55107282+release-please[bot]@users.noreply.github.com
|
2023-04-12 14:10:08 +00:00
|
|
|
- name: Test Algolia if Crawler is blocked
|
|
|
|
env:
|
|
|
|
CRAWLER_USER_ID: ${{secrets.ALGOLIA_CRAWLER_USER_ID}}
|
|
|
|
CRAWLER_API_KEY: ${{secrets.ALGOLIA_CRAWLER_API_KEY}}
|
|
|
|
CRAWLER_ID: ${{secrets.ALGOLIA_CRAWLER_ID}}
|
|
|
|
run: |
|
2023-04-12 15:19:25 +00:00
|
|
|
RESPONSE=$(curl -H "Content-Type: application/json" -X GET --user "$CRAWLER_USER_ID:$CRAWLER_API_KEY" \
|
2023-04-12 15:59:01 +00:00
|
|
|
"https://crawler.algolia.com/api/1/crawlers/$CRAWLER_ID" | grep "\"blocked\":true" || true ); \
|
|
|
|
if [ ! -z "$RESPONSE" ]; then echo "Please go to https://crawler.algolia.com/" && exit 1; fi
|
2022-12-16 13:19:28 +00:00
|
|
|
- name: Trigger Algolia reindexing
|
|
|
|
env:
|
|
|
|
CRAWLER_USER_ID: ${{secrets.ALGOLIA_CRAWLER_USER_ID}}
|
|
|
|
CRAWLER_API_KEY: ${{secrets.ALGOLIA_CRAWLER_API_KEY}}
|
|
|
|
CRAWLER_ID: ${{secrets.ALGOLIA_CRAWLER_ID}}
|
|
|
|
run: |
|
|
|
|
curl -H "Content-Type: application/json" -X POST --user "$CRAWLER_USER_ID:$CRAWLER_API_KEY" \
|
|
|
|
"https://crawler.algolia.com/api/1/crawlers/$CRAWLER_ID/reindex"
|
2022-07-01 11:52:39 +00:00
|
|
|
|
2022-10-06 13:45:22 +00:00
|
|
|
chrome-tests:
|
|
|
|
name: ${{ matrix.suite }} tests on ${{ matrix.os }}
|
|
|
|
runs-on: ${{ matrix.os }}
|
2023-01-19 12:53:43 +00:00
|
|
|
needs: check-changes
|
|
|
|
if: ${{ contains(fromJSON(needs.check-changes.outputs.changes), 'puppeteer') }}
|
2021-01-12 10:48:33 +00:00
|
|
|
strategy:
|
2022-09-23 07:57:40 +00:00
|
|
|
fail-fast: false
|
2021-01-12 10:48:33 +00:00
|
|
|
matrix:
|
2022-10-06 13:45:22 +00:00
|
|
|
os:
|
|
|
|
- ubuntu-latest
|
|
|
|
- windows-latest
|
|
|
|
- macos-latest
|
|
|
|
suite:
|
|
|
|
- chrome-headless
|
|
|
|
- chrome-headful
|
|
|
|
- chrome-new-headless
|
2022-12-20 14:37:31 +00:00
|
|
|
- chrome-bidi
|
|
|
|
exclude:
|
|
|
|
- os: windows-latest
|
|
|
|
suite: chrome-bidi
|
2023-03-24 15:36:00 +00:00
|
|
|
- os: macos-latest
|
|
|
|
suite: chrome-headful
|
2021-01-12 10:48:33 +00:00
|
|
|
steps:
|
2022-10-06 10:44:45 +00:00
|
|
|
- name: Check out repository
|
2023-01-20 10:37:11 +00:00
|
|
|
uses: actions/checkout@v3.3.0
|
2022-10-06 13:45:22 +00:00
|
|
|
- name: Set up Node.js
|
2022-10-17 12:10:52 +00:00
|
|
|
uses: actions/setup-node@v3.5.1
|
2022-10-06 13:45:22 +00:00
|
|
|
with:
|
|
|
|
cache: npm
|
2023-03-15 12:59:42 +00:00
|
|
|
node-version: lts/*
|
2022-10-06 13:45:22 +00:00
|
|
|
- name: Install dependencies
|
2023-03-10 07:52:48 +00:00
|
|
|
run: npm ci
|
|
|
|
env:
|
|
|
|
PUPPETEER_SKIP_DOWNLOAD: true
|
2022-10-13 16:55:11 +00:00
|
|
|
- name: Build packages
|
2023-02-02 10:18:17 +00:00
|
|
|
run: npm run build --workspace @puppeteer-test/test
|
2023-05-02 06:53:40 +00:00
|
|
|
- name: Setup cache for Chrome binary
|
2022-07-01 13:03:12 +00:00
|
|
|
uses: actions/cache@v3
|
2021-05-26 13:30:16 +00:00
|
|
|
with:
|
2022-10-11 11:20:45 +00:00
|
|
|
path: ~/.cache/puppeteer/chrome
|
2023-05-02 06:53:40 +00:00
|
|
|
key: ${{ runner.os }}-Chrome-${{ hashFiles('packages/puppeteer-core/src/revisions.ts') }}-${{ hashFiles('packages/puppeteer/src/node/install.ts') }}
|
|
|
|
- name: Install Chrome
|
2022-10-06 13:45:22 +00:00
|
|
|
run: npm run postinstall
|
|
|
|
- name: Tests types
|
2022-10-13 16:55:11 +00:00
|
|
|
run: npm run test-types
|
2022-10-06 13:45:22 +00:00
|
|
|
- name: Run all tests (for non-Linux)
|
|
|
|
if: ${{ matrix.os != 'ubuntu-latest' }}
|
2023-03-24 14:31:47 +00:00
|
|
|
run: npm run test -- --test-suite ${{ matrix.suite }} --save-stats-to /tmp/artifacts/${{ github.event_name }}_INSERTID.json
|
2023-03-15 12:59:42 +00:00
|
|
|
- name: Install linux dependencies.
|
|
|
|
if: ${{ matrix.os == 'ubuntu-latest' }}
|
|
|
|
run: sudo apt-get install xvfb
|
2022-10-06 13:45:22 +00:00
|
|
|
- name: Run all tests (for Linux)
|
|
|
|
if: ${{ matrix.os == 'ubuntu-latest' }}
|
2023-03-24 14:31:47 +00:00
|
|
|
run: xvfb-run --auto-servernum npm run test -- --test-suite ${{ matrix.suite }} --save-stats-to /tmp/artifacts/${{ github.event_name }}_INSERTID.json
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
if: always()
|
|
|
|
with:
|
|
|
|
name: test-results
|
|
|
|
path: /tmp/artifacts/*.json
|
2022-10-06 13:45:22 +00:00
|
|
|
|
2023-01-19 12:53:43 +00:00
|
|
|
chrome-tests-required:
|
2023-01-20 10:37:11 +00:00
|
|
|
name: '[Required] Chrome tests'
|
2023-01-19 12:53:43 +00:00
|
|
|
needs: [check-changes, chrome-tests]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: ${{ always() }}
|
|
|
|
steps:
|
|
|
|
- if: ${{ needs.chrome-tests.result != 'success' && contains(fromJSON(needs.check-changes.outputs.changes), 'puppeteer') }}
|
|
|
|
run: 'exit 1'
|
|
|
|
- run: 'exit 0'
|
|
|
|
|
2022-10-06 13:45:22 +00:00
|
|
|
firefox-tests:
|
2022-10-19 14:24:56 +00:00
|
|
|
name: ${{ matrix.suite }} tests on ${{ matrix.os }}
|
|
|
|
runs-on: ${{ matrix.os }}
|
2023-01-19 12:53:43 +00:00
|
|
|
needs: check-changes
|
|
|
|
if: ${{ contains(fromJSON(needs.check-changes.outputs.changes), 'puppeteer') }}
|
2022-10-06 13:45:22 +00:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2022-10-19 14:24:56 +00:00
|
|
|
os:
|
|
|
|
- ubuntu-latest
|
2023-05-15 14:39:47 +00:00
|
|
|
# Disabled as BiDi has issue on mac https://bugzilla.mozilla.org/show_bug.cgi?id=1832778
|
|
|
|
# - macos-latest
|
2022-10-06 13:45:22 +00:00
|
|
|
suite:
|
|
|
|
- firefox-bidi
|
|
|
|
- firefox-headful
|
|
|
|
- firefox-headless
|
2023-03-24 15:36:00 +00:00
|
|
|
exclude:
|
|
|
|
- os: macos-latest
|
|
|
|
suite: firefox-headful
|
|
|
|
- os: macos-latest
|
|
|
|
suite: firefox-headless
|
2022-10-06 13:45:22 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Node.js
|
2022-10-17 12:10:52 +00:00
|
|
|
uses: actions/setup-node@v3.5.1
|
2022-10-06 13:45:22 +00:00
|
|
|
with:
|
|
|
|
cache: npm
|
2023-03-15 12:59:42 +00:00
|
|
|
node-version: lts/*
|
2022-10-06 13:45:22 +00:00
|
|
|
- name: Install dependencies
|
2023-03-10 07:52:48 +00:00
|
|
|
run: npm ci
|
|
|
|
env:
|
|
|
|
PUPPETEER_SKIP_DOWNLOAD: true
|
2022-10-13 16:55:11 +00:00
|
|
|
- name: Build packages
|
2023-02-02 10:18:17 +00:00
|
|
|
run: npm run build --workspace @puppeteer-test/test
|
2022-07-01 13:03:12 +00:00
|
|
|
- name: Setup cache for Firefox binary
|
|
|
|
uses: actions/cache@v3
|
2021-01-27 13:57:41 +00:00
|
|
|
with:
|
2022-10-11 11:20:45 +00:00
|
|
|
path: ~/.cache/puppeteer/firefox
|
2023-03-28 09:27:50 +00:00
|
|
|
key: ${{ runner.os }}-firefox-${{ hashFiles('packages/puppeteer-core/src/revisions.ts') }}-${{ hashFiles('packages/puppeteer/src/node/install.ts') }}
|
2022-07-01 13:03:12 +00:00
|
|
|
- name: Install Firefox
|
2021-03-05 09:00:56 +00:00
|
|
|
env:
|
2022-07-01 13:03:12 +00:00
|
|
|
PUPPETEER_PRODUCT: firefox
|
2022-10-06 13:45:22 +00:00
|
|
|
run: npm run postinstall
|
|
|
|
- name: Tests types
|
2022-10-13 16:55:11 +00:00
|
|
|
run: npm run test-types
|
2022-10-19 14:24:56 +00:00
|
|
|
- name: Run all tests (for non-Linux)
|
|
|
|
if: ${{ matrix.os != 'ubuntu-latest' }}
|
2023-03-24 14:31:47 +00:00
|
|
|
run: npm run test -- --test-suite ${{ matrix.suite }} --save-stats-to /tmp/artifacts/${{ github.event_name }}_INSERTID.json
|
2023-03-15 12:59:42 +00:00
|
|
|
- name: Install linux dependencies.
|
|
|
|
if: ${{ matrix.os == 'ubuntu-latest' }}
|
|
|
|
run: sudo apt-get install xvfb
|
2022-10-19 14:24:56 +00:00
|
|
|
- name: Run all tests (for Linux)
|
|
|
|
if: ${{ matrix.os == 'ubuntu-latest' }}
|
2023-03-24 14:31:47 +00:00
|
|
|
run: xvfb-run --auto-servernum npm run test -- --test-suite ${{ matrix.suite }} --save-stats-to /tmp/artifacts/${{ github.event_name }}_INSERTID.json
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
if: always()
|
|
|
|
with:
|
|
|
|
name: test-results
|
|
|
|
path: /tmp/artifacts/*.json
|
2022-07-25 12:34:01 +00:00
|
|
|
|
2023-01-19 12:53:43 +00:00
|
|
|
firefox-tests-required:
|
2023-01-20 10:37:11 +00:00
|
|
|
name: '[Required] Firefox tests'
|
2023-01-19 12:53:43 +00:00
|
|
|
needs: [check-changes, firefox-tests]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: ${{ always() }}
|
|
|
|
steps:
|
|
|
|
- if: ${{ needs.firefox-tests.result != 'success' && contains(fromJSON(needs.check-changes.outputs.changes), 'puppeteer') }}
|
|
|
|
run: 'exit 1'
|
|
|
|
- run: 'exit 0'
|
|
|
|
|
2022-10-14 11:37:07 +00:00
|
|
|
installation-test-build:
|
|
|
|
name: Build installation test
|
2022-10-06 13:45:22 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-01-19 12:53:43 +00:00
|
|
|
needs: check-changes
|
|
|
|
if: ${{ !startsWith(github.ref_name, 'release-please') && contains(fromJSON(needs.check-changes.outputs.changes), 'puppeteer') }}
|
2022-10-06 13:45:22 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Node.js
|
2022-10-17 12:10:52 +00:00
|
|
|
uses: actions/setup-node@v3.5.1
|
2022-10-06 13:45:22 +00:00
|
|
|
with:
|
|
|
|
cache: npm
|
2023-03-15 12:59:42 +00:00
|
|
|
node-version: lts/*
|
2022-10-06 13:45:22 +00:00
|
|
|
- name: Install dependencies
|
2023-03-10 07:52:48 +00:00
|
|
|
run: npm ci
|
|
|
|
env:
|
|
|
|
PUPPETEER_SKIP_DOWNLOAD: true
|
2022-10-14 11:37:07 +00:00
|
|
|
- name: Build installation test
|
|
|
|
run: npm run build --workspace @puppeteer-test/installation
|
|
|
|
- name: Pack installation test
|
|
|
|
run: npm pack --workspace @puppeteer-test/installation
|
|
|
|
- name: Upload installation test
|
2022-10-06 13:45:22 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
2022-10-14 11:37:07 +00:00
|
|
|
name: installation-test
|
|
|
|
path: puppeteer-test-installation-latest.tgz
|
2022-10-06 13:45:22 +00:00
|
|
|
|
2022-10-14 11:37:07 +00:00
|
|
|
installation-test:
|
|
|
|
name: Test ${{ matrix.pkg_manager }} installation on ${{ matrix.os }} (${{ matrix.node }})
|
|
|
|
needs: installation-test-build
|
2023-01-19 12:53:43 +00:00
|
|
|
if: ${{ !startsWith(github.ref_name, 'release-please') }}
|
2022-07-25 12:34:01 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
2022-10-06 13:45:22 +00:00
|
|
|
fail-fast: false
|
2022-07-25 12:34:01 +00:00
|
|
|
matrix:
|
2022-10-06 13:45:22 +00:00
|
|
|
os:
|
|
|
|
- ubuntu-latest
|
|
|
|
- macos-latest
|
2022-10-14 11:37:07 +00:00
|
|
|
- windows-latest
|
2022-10-06 13:45:22 +00:00
|
|
|
node:
|
|
|
|
- 18
|
2022-10-14 11:37:07 +00:00
|
|
|
pkg_manager:
|
|
|
|
- npm
|
2022-10-06 13:45:22 +00:00
|
|
|
steps:
|
2022-10-14 11:37:07 +00:00
|
|
|
- name: Download installation test
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: installation-test
|
|
|
|
- name: Unpack installation test
|
|
|
|
run: tar -xf puppeteer-test-installation-latest.tgz --strip-components 1 -C .
|
2022-10-06 13:45:22 +00:00
|
|
|
- name: Set up Node.js
|
2022-10-17 12:10:52 +00:00
|
|
|
uses: actions/setup-node@v3.5.1
|
2022-10-06 13:45:22 +00:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node }}
|
2022-10-14 11:37:07 +00:00
|
|
|
- name: Set up ${{ matrix.pkg_manager }}
|
2022-11-11 08:34:13 +00:00
|
|
|
id: workaround
|
|
|
|
if: ${{ matrix.node == '14' && matrix.os == 'windows-latest' && matrix.pkg_manager == 'npm' }}
|
|
|
|
run: npm install -g ${{ matrix.pkg_manager }}@8.3
|
|
|
|
- name: Set up ${{ matrix.pkg_manager }}
|
|
|
|
if: ${{ steps.workaround.outcome == 'skipped' }}
|
2022-10-14 11:37:07 +00:00
|
|
|
run: npm install -g ${{ matrix.pkg_manager }}@latest
|
|
|
|
- name: Install dependencies
|
|
|
|
run: ${{ matrix.pkg_manager }} install
|
|
|
|
- name: Test
|
|
|
|
env:
|
|
|
|
PKG_MANAGER: ${{ matrix.pkg_manager }}
|
|
|
|
run: ${{ matrix.pkg_manager }} test
|
2022-10-06 13:45:22 +00:00
|
|
|
|
2023-01-19 12:53:43 +00:00
|
|
|
installation-test-required:
|
2023-01-20 10:37:11 +00:00
|
|
|
name: '[Required] Installation tests'
|
2023-01-19 12:53:43 +00:00
|
|
|
needs: [check-changes, installation-test]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: ${{ always() }}
|
|
|
|
steps:
|
|
|
|
- if: ${{ needs.installation-test.result != 'success' && contains(fromJSON(needs.check-changes.outputs.changes), 'puppeteer') }}
|
|
|
|
run: 'exit 1'
|
|
|
|
- run: 'exit 0'
|
|
|
|
|
2022-10-06 13:45:22 +00:00
|
|
|
docker-tests:
|
2023-01-20 10:37:11 +00:00
|
|
|
name: '[Required] Test Docker image'
|
2022-10-06 13:45:22 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-01-19 12:53:43 +00:00
|
|
|
needs: check-changes
|
|
|
|
if: ${{ contains(fromJSON(needs.check-changes.outputs.changes), 'puppeteer') }}
|
2022-07-25 12:34:01 +00:00
|
|
|
steps:
|
2022-10-06 10:44:45 +00:00
|
|
|
- name: Check out repository
|
2023-01-20 10:37:11 +00:00
|
|
|
uses: actions/checkout@v3.3.0
|
2022-07-25 12:34:01 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
|
|
|
- name: Set up Node.js
|
2022-10-17 12:10:52 +00:00
|
|
|
uses: actions/setup-node@v3.5.1
|
2022-07-25 12:34:01 +00:00
|
|
|
with:
|
2022-10-06 13:45:22 +00:00
|
|
|
cache: npm
|
2023-03-15 12:59:42 +00:00
|
|
|
node-version: lts/*
|
2022-07-25 12:34:01 +00:00
|
|
|
- name: Install dependencies
|
2023-03-10 07:52:48 +00:00
|
|
|
run: npm ci
|
|
|
|
env:
|
|
|
|
PUPPETEER_SKIP_DOWNLOAD: true
|
2022-10-06 13:45:22 +00:00
|
|
|
- name: Build packages
|
2023-02-02 10:18:17 +00:00
|
|
|
run: npm run build --workspace puppeteer
|
2022-10-06 13:45:22 +00:00
|
|
|
- name: Pack packages
|
|
|
|
run: docker/pack.sh
|
2022-07-25 12:34:01 +00:00
|
|
|
- name: Build docker image
|
|
|
|
working-directory: ./docker
|
|
|
|
run: |
|
|
|
|
docker build -t puppeteer-test-image .
|
|
|
|
- name: Run smoke test
|
|
|
|
working-directory: ./docker
|
|
|
|
run: |
|
|
|
|
docker run -i --init --cap-add=SYS_ADMIN --rm puppeteer-test-image node -e "`cat test/smoke-test.js`"
|
2022-11-10 14:26:46 +00:00
|
|
|
|
|
|
|
ng-schematics-tests:
|
2023-01-20 10:37:11 +00:00
|
|
|
name: '[Required] Test Angular Schematics'
|
2022-11-10 14:26:46 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-01-19 12:53:43 +00:00
|
|
|
needs: check-changes
|
|
|
|
if: ${{ contains(fromJSON(needs.check-changes.outputs.changes), 'ng-schematics') }}
|
2022-11-10 14:26:46 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Node.js
|
|
|
|
uses: actions/setup-node@v3.5.1
|
|
|
|
with:
|
|
|
|
cache: npm
|
2023-03-15 12:59:42 +00:00
|
|
|
node-version: lts/*
|
2022-11-10 14:26:46 +00:00
|
|
|
- name: Install dependencies
|
2023-03-10 07:52:48 +00:00
|
|
|
run: npm ci
|
|
|
|
env:
|
|
|
|
PUPPETEER_SKIP_DOWNLOAD: true
|
2022-11-10 14:26:46 +00:00
|
|
|
- name: Run tests
|
|
|
|
run: npm run test --workspace @puppeteer/ng-schematics
|
2023-02-13 10:49:50 +00:00
|
|
|
|
|
|
|
browsers-tests:
|
|
|
|
name: Browsers tests on ${{ matrix.os }}
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
needs: check-changes
|
|
|
|
if: ${{ contains(fromJSON(needs.check-changes.outputs.changes), 'browsers') }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os:
|
|
|
|
- ubuntu-latest
|
|
|
|
- windows-latest
|
|
|
|
- macos-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Node.js
|
|
|
|
uses: actions/setup-node@v3.5.1
|
|
|
|
with:
|
|
|
|
cache: npm
|
2023-03-15 12:59:42 +00:00
|
|
|
node-version: lts/*
|
2023-02-13 10:49:50 +00:00
|
|
|
- name: Install dependencies
|
2023-03-10 07:52:48 +00:00
|
|
|
run: npm ci
|
|
|
|
env:
|
|
|
|
PUPPETEER_SKIP_DOWNLOAD: true
|
2023-02-13 10:49:50 +00:00
|
|
|
- name: Run tests
|
|
|
|
run: npm run test --workspace @puppeteer/browsers
|
|
|
|
|
|
|
|
browsers-tests-required:
|
|
|
|
name: '[Required] Test the browsers packages'
|
|
|
|
needs: [check-changes, browsers-tests]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: ${{ always() }}
|
|
|
|
steps:
|
|
|
|
- if: ${{ needs.browsers-tests.result != 'success' && contains(fromJSON(needs.check-changes.outputs.changes), 'browsers') }}
|
|
|
|
run: 'exit 1'
|
|
|
|
- run: 'exit 0'
|