Skip to content

Commit

Permalink
Merge branch 'master' into dapplion/benchmark-async
Browse files Browse the repository at this point in the history
  • Loading branch information
wemeetagain authored Aug 9, 2024
2 parents fc1254a + 7aa91c2 commit f1f7f96
Show file tree
Hide file tree
Showing 69 changed files with 30,175 additions and 4,938 deletions.
6 changes: 6 additions & 0 deletions .aegir.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/** @type {import('aegir').PartialOptions} */
export default {
build: {
bundlesizeMax: '85KB'
}
}
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

60 changes: 0 additions & 60 deletions .eslintrc.cjs

This file was deleted.

15 changes: 9 additions & 6 deletions .github/.dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
version: 2
updates:
- package-ecosystem: "npm"
allow:
# Allow both direct and indirect updates for all packages
- dependency-type: "production"
commit-message:
prefix: "chore: "
- package-ecosystem: npm
directory: "/"
schedule:
interval: daily
time: "10:00"
open-pull-requests-limit: 10
commit-message:
prefix: "deps"
prefix-development: "deps(dev)"
20 changes: 10 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
node: [16]
node: [lts/*]
fail-fast: false
steps:
- uses: actions/checkout@v2
Expand All @@ -41,15 +41,15 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
node: [lts/*]
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run test:e2e -- --target node --bail -- --exit
- run: npm run test:e2e -- --target node --bail -- --exit
test-chrome:
needs: check
runs-on: ubuntu-latest
Expand All @@ -76,29 +76,29 @@ jobs:
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
needs: [check, test-node, test-chrome]
steps:
- uses: google-github-actions/release-please-action@v3
- uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: node
package-name: release-please-action
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":false}]'

- uses: actions/checkout@v3
if: ${{ steps.release.outputs.release_created }}

- uses: actions/setup-node@v3
with:
node-version: 16
node-version: lts/*
registry-url: 'https://registry.npmjs.org'
if: ${{ steps.release.outputs.release_created }}

- run: npm install
if: ${{ steps.release.outputs.release_created }}

- run: npm run build
if: ${{ steps.release.outputs.release_created }}

- run: npm publish --access public
- run: npm publish --access public
if: ${{ steps.release.outputs.release_created }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.idea/
node_modules/
package-lock.json
yarn.lock
dist/
docs/
.nyc_output/coverage-final.json
.vscode/settings.json
benchmark_data/
benchmark_data/
.vscode/
3 changes: 0 additions & 3 deletions .mocharc.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions .prettierignore

This file was deleted.

11 changes: 0 additions & 11 deletions .prettierrc.cjs

This file was deleted.

Loading

0 comments on commit f1f7f96

Please sign in to comment.