Skip to content

Commit

Permalink
Merge pull request #66 from TREEcg/fix/update-dependencies
Browse files Browse the repository at this point in the history
Fix/update dependencies
  • Loading branch information
julianrojas87 committed Mar 28, 2023
2 parents 153cb83 + 34234fe commit e65ea92
Show file tree
Hide file tree
Showing 33 changed files with 24,662 additions and 1,357 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Node.js CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run test-ci
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
components
.idea
node_modules
package-lock.json
yarn.lock
.yarnrc
.yarn
Expand Down
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,16 @@
```
git clone https://github.com/TREEcg/event-stream-client.git
cd event-stream-client
yarn install
npm install
```



## Sync
If you want to sync with an event stream, have a look at the pre-built engine:
If you want to sync with an [Linked Data Event Stream (LDES)](https://w3id.org/ldes/specification), have a look at the pre-built engine:

- [actor-init-ldes-client](https://github.com/TREEcg/event-stream-client/tree/main/packages/actor-init-ldes-client): Comunica engine to sync with an event stream from JavaScript applications or the CLI.
- [actor-init-ldes-client](https://github.com/TREEcg/event-stream-client/tree/main/packages/actor-init-ldes-client): Comunica-based engine to materialize sync with an LDES from JavaScript applications or the CLI.

## Publish

```
yarn run publish
npm run publish
```
4 changes: 2 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"lerna": "2.4.0",
"lerna": "6.5.1",
"command": {
"publish": {
"ignoreChanges": [
Expand All @@ -17,7 +17,7 @@
"version": "3.0.2",
"loglevel": "success",
"registry": "https://registry.npmjs.org/",
"npmClient": "yarn",
"npmClient": "npm",
"npmClientArgs": [
"--pure-lockfile"
]
Expand Down

0 comments on commit e65ea92

Please sign in to comment.