add 'startEarly' option to init opts, which will enable autoplay / au… #995
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Facebook Behavior: Page Photos (Owner Logged In)" | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '29 16 * * *' | |
jobs: | |
facebook_test: | |
environment: DigitalOcean | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: prewk/s3-cp-action@v1 | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_S3_ENDPOINT: ${{ secrets.AWS_S3_ENDPOINT }} | |
SOURCE: ${{ secrets.PROFILE_URL }} | |
DEST: './profile.tar.gz' | |
- name: install requirements | |
run: yarn install | |
- uses: c-py/action-dotenv-to-setenv@v2 | |
with: | |
env-file: test/test.env | |
- name: get browsertrix image | |
run: docker pull $BROWSERTRIX_IMAGE | |
- name: run crawl | |
run: docker run -v $PWD/dist/behaviors.js:/app/node_modules/browsertrix-behaviors/dist/behaviors.js -v $PWD/profile.tar.gz:/profile.tar.gz $BROWSERTRIX_IMAGE crawl --url https://www.facebook.com/Capture-Sample-105559135004406/photos --limit 1 --logging behaviors --profile /profile.tar.gz > ./log | |
- name: cat log | |
run: cat ./log | |
- uses: sergeysova/jq-action@v2 | |
name: compare crawl log to expected | |
with: | |
cmd: > | |
cat log | |
| jq -Rr -c 'fromjson? | .details | select(type == "object") | {msg,state} | select(.msg != null)' | |
| diff - ./test/expected-facebook-photos.log |