Merge branch 'main' into main

This commit is contained in:
Cory Miller
2022-06-20 13:19:34 -04:00
committed by GitHub
18 changed files with 3843 additions and 1431 deletions

View File

@@ -4,9 +4,9 @@ updates:
- package-ecosystem: 'npm'
# Look for `package.json` and `lock` files in the `root` directory
directory: '/'
# Check the npm registry for updates every day (weekdays)
# Check the npm registry for updates once a week (Monday)
schedule:
interval: 'daily'
interval: 'weekly'
- package-ecosystem: 'github-actions'
directory: '/'

View File

@@ -23,10 +23,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set Node.js 12.x
- name: Set Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 16.x
- name: Install dependencies
run: npm ci