chore: fix spelling of endpoint #7
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
version: 2 | |
updates: | |
# Enable version updates for application itself. | |
- package-ecosystem: "npm" | |
# Look for `package.json` and `lock` files in the `root` directory. | |
directory: "/" | |
# Check the npm registry for updates every day (weekdays). | |
schedule: | |
interval: "weekly" | |
# Enable version updates for our CI tooling. | |
- package-ecosystem: "github-actions" | |
# For GitHub Actions, setting the directory to / will check for workflow | |
# files in .github/workflows. | |
directory: "/" | |
# Check the npm registry for updates every day (weekdays). | |
schedule: | |
interval: "weekly" | |
# Enable version updates for embedded demo app | |
- package-ecosystem: "npm" | |
# Look for `package.json` and `package-lock.json` files in the `e2e/browser/test-app` directory. | |
directory: "/e2e/test-app" | |
# Check the npm registry for updates every day (weekdays). | |
schedule: | |
interval: "weekly" |