First release

This commit is contained in:
Owen Quinlan 2021-07-02 19:29:34 +10:00
commit fa6c85266e
2339 changed files with 761050 additions and 0 deletions

8
node_modules/url-toolkit/.github/dependabot.yml generated vendored Normal file
View file

@ -0,0 +1,8 @@
version: 2
updates:
- package-ecosystem: npm
directory: '/'
schedule:
interval: daily
open-pull-requests-limit: 99
versioning-strategy: widen

View file

@ -0,0 +1,14 @@
name: Auto Merge Dependency Updates
on:
- pull_request_target
- pull_request_review
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: tjenkinson/gh-action-auto-merge-dependency-updates@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
allowed-actors: dependabot-preview[bot], dependabot[bot], tjenkinson

25
node_modules/url-toolkit/.github/workflows/nodejs.yml generated vendored Normal file
View file

@ -0,0 +1,25 @@
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['10', '12', '15']
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: npm install and test
run: |
npm ci
npm run lint
npm test
env:
CI: true