Skip to content

Commit

Permalink
feat: switch to stream based api (#1)
Browse files Browse the repository at this point in the history
BREAKING CHANGES: The storage API has been removed. The Multer has gotten a new stream-based API. Dropped support for Node.js < 10.18.x
  • Loading branch information
derevnjuk committed Dec 27, 2019
1 parent 5937690 commit 167c0eb
Show file tree
Hide file tree
Showing 61 changed files with 11,774 additions and 3,207 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/auto-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI / Automated testing

on:
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 13.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm run test
20 changes: 20 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Automated deploy

on:
push:
branches:
- master

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm ci
- run: npm run semantic-release
env:
NPM_TOKEN: ${{secrets.npm_token}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ node_modules

# Coveralls
coverage
.idea
30 changes: 30 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"parserOpts": {
"noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES"]
}
}
],
[
"@semantic-release/release-notes-generator",
{
"writerOpts": {
"commitsSort": ["subject", "scope"]
}
}
],
"@semantic-release/npm",
[
"@semantic-release/github",
{
"labels": false,
"releasedLabels": false
}
]
],
"branch": "master",
"ci": true
}
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

72 changes: 0 additions & 72 deletions CHANGELOG.md

This file was deleted.

Loading

0 comments on commit 167c0eb

Please sign in to comment.