Update @axe-core/watcher #657
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: Update @axe-core/watcher | |
on: | |
workflow_dispatch: | |
schedule: | |
# Scheduled to run at 2am every day | |
- cron: "0 2 * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- run: cd example && npm install --save-dev @axe-core/watcher@latest | |
- name: Open PR | |
uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # tag=v5 | |
with: | |
token: ${{ secrets.PAT }} | |
commit-message: "chore: Update @axe-core/watcher" | |
branch: auto-update-watcher | |
base: main | |
title: "chore: Update @axe-core/watcher" | |
body: | | |
This patch updates version of [`@axe-core/watcher`](https://npmjs.org/@axe-core/watcher) to the latest version. | |
This PR was opened by a robot :robot: :tada:. |