Skip to content

Update file capture.yml to add JPEG files for saving screenshots #25

Update file capture.yml to add JPEG files for saving screenshots

Update file capture.yml to add JPEG files for saving screenshots #25

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: screenshot-website
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "screenshot2" ]
pull_request:
branches: [ "screenshot2" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Install dependencies
run: npm install
- name: Run screenshot.js
run: node docs/screenshot.js
- name: Save screenshots
uses: EndBug/add-and-commit@v4
with:
author_name: Bot
message: "Save screenshot"
add: "*.jpeg"