Skip to content

Commit

Permalink
Merge pull request #1 from abarisain/feature/update_cppzst
Browse files Browse the repository at this point in the history
Feature/update cppzst
  • Loading branch information
xjrk58 authored Dec 31, 2023
2 parents c8d3e2a + 61705ec commit d6f8d74
Show file tree
Hide file tree
Showing 9 changed files with 6,162 additions and 3,159 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"node": true
},
"parserOptions": {
"ecmaVersion": 2020
"ecmaVersion": "latest",
"sourceType": "module"
}
}
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 18
registry-url: https://registry.npmjs.org/
- run: npm publish
env:
Expand Down
19 changes: 11 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,32 @@ name: CI

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
node-version: [14.x, 16.x, 18.x, 20.x]
# Add an extra matrix dimension only for node-version 14
# As we need to update npm for the lockfile to work
include:
- node-version: 14.x
npm: 9

env:
CI: true

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Update npm
if: ${{ matrix.npm }}
run: npm install -g npm@${{ matrix.npm }}
- name: Install dependencies
run: npm ci
- name: Lint
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
ZOOKEEPER_TICK_TIME: 2000

kafka:
image: confluentinc/cp-kafka:5.4.2
image: confluentinc/cp-kafka:7.5.0
hostname: kafka
container_name: kafka
labels:
Expand Down
Loading

0 comments on commit d6f8d74

Please sign in to comment.