-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v5.0.0 - boundation, changelog, version bump
- Loading branch information
Showing
8 changed files
with
259 additions
and
164 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: weekly | ||
day: sunday | ||
time: '00:00' | ||
timezone: Australia/Perth | ||
- package-ecosystem: npm | ||
directory: / | ||
schedule: | ||
interval: weekly | ||
day: sunday | ||
time: '00:00' | ||
timezone: Australia/Perth | ||
open-pull-requests-limit: 0 |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,48 +8,66 @@ jobs: | |
matrix: | ||
os: | ||
- ubuntu-latest | ||
- macos-latest | ||
- windows-latest | ||
node: | ||
- '10' | ||
- '12' | ||
- '14' | ||
- '16' | ||
- '18' | ||
- '20' | ||
- '21' | ||
runs-on: ${{ matrix.os }} | ||
continue-on-error: ${{ contains('macos-latest windows-latest', matrix.os) }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
- name: Install desired Node.js version | ||
uses: actions/setup-node@v2 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20' | ||
- name: Verify Node.js Versions | ||
run: >- | ||
printf '%s' 'node: ' && node --version && printf '%s' 'npm: ' && npm | ||
--version && node -e 'console.log(process.versions)' | ||
- run: npm run our:setup | ||
- run: npm run our:compile | ||
- run: npm run our:verify | ||
- name: Install targeted Node.js | ||
if: ${{ matrix.node != 20 }} | ||
uses: actions/setup-node@v2 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- name: Verify Node.js Versions | ||
run: >- | ||
printf '%s' 'node: ' && node --version && printf '%s' 'npm: ' && npm | ||
--version && node -e 'console.log(process.versions)' | ||
- run: npm test | ||
publish: | ||
if: ${{ github.event_name == 'push' }} | ||
needs: test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
- name: Install desired Node.js version | ||
uses: actions/setup-node@v2 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20' | ||
- name: Verify Node.js Versions | ||
run: >- | ||
printf '%s' 'node: ' && node --version && printf '%s' 'npm: ' && npm | ||
--version && node -e 'console.log(process.versions)' | ||
- run: npm run our:setup | ||
- run: npm run our:compile | ||
- run: npm run our:meta | ||
- name: publish to npm | ||
uses: bevry-actions/[email protected].0 | ||
uses: bevry-actions/[email protected].1 | ||
with: | ||
npmAuthToken: ${{ secrets.NPM_AUTH_TOKEN }} | ||
npmBranchTag: ':next' | ||
automerge: | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
if: github.actor == 'dependabot[bot]' | ||
steps: | ||
- name: Enable auto-merge for Dependabot PRs | ||
run: gh pr merge --auto --merge "$PR_URL" | ||
env: | ||
PR_URL: ${{github.event.pull_request.html_url}} | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |
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
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
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
Oops, something went wrong.