Skip to content

Commit

Permalink
Merge pull request #89 from SvenWesterlaken/develop
Browse files Browse the repository at this point in the history
Update packages
  • Loading branch information
SvenWesterlaken committed Dec 13, 2020
2 parents 6bc173c + 6e708c6 commit e5e602c
Show file tree
Hide file tree
Showing 4 changed files with 245 additions and 153 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,47 @@ jobs:
NEO_USER: neo4j
NEO_PASS: new

release-dry:
if: github.event_name == 'push' && github.ref != 'refs/heads/master'
runs-on: ubuntu-latest
needs: [test]
services:
neo4j:
image: neo4j
ports:
- 7474:7474
- 7687:7687
env:
NEO4J_AUTH: neo4j/new
NEO4J_dbms_connector_http_advertised__address: "neo4j:7474"
NEO4J_dbms_connector_bolt_advertised__address: "neo4j:7687"
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 14.x

- name: Start MongoDB
uses: supercharge/mongodb-github-action@1.3.0
with:
mongodb-version: 4.2

- name: Install
run: npm i

- name: Release
run: npm run semantic-release-dry
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
NEO_URI: neo4j://localhost:7687
NEO_USER: neo4j
NEO_PASS: new

# -------------------------------------------------------------
# Release
# -------------------------------------------------------------
Expand Down
4 changes: 1 addition & 3 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,4 @@ Dockerfile
.nyc_output
.travis.yml
.github/
CHANGELOG.md
LICENSE.md
README.md
.env

0 comments on commit e5e602c

Please sign in to comment.