Skip to content

Commit

Permalink
Merge pull request #18 from curveball/update-to-kernel-2022-09-03
Browse files Browse the repository at this point in the history
Update to kernel 2022 09 03
  • Loading branch information
evert authored Sep 3, 2022
2 parents 69d58c0 + 5b937e6 commit 31c0fad
Show file tree
Hide file tree
Showing 10 changed files with 1,789 additions and 1,712 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
}
],
"semi": ["error", "always"],
"no-console": ["error", { "allow": ["warn", "error", "info", "debug"] }],
"no-trailing-spaces": "error",
"eol-last": "error",
"@typescript-eslint/ban-ts-comment": ["error",
Expand All @@ -61,7 +62,6 @@
}],
"@typescript-eslint/prefer-for-of": ["error"],
"@typescript-eslint/prefer-optional-chain": ["error"],
"@typescript-eslint/prefer-ts-expect-error": ["error"],
"no-console": ["error"]
"@typescript-eslint/prefer-ts-expect-error": ["error"]
}
}
19 changes: 17 additions & 2 deletions .github/workflows/test.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ on:
branches: [ main ]

jobs:
build:
test:
name: Run tests

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [14.x, 16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand All @@ -28,3 +29,17 @@ jobs:
- run: npm ci
- run: npm run build --if-present
- run: npm test

lint:
name: Lint

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 18.x
- run: npm ci
- run: npm run lint
8 changes: 4 additions & 4 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 12
node-version: 14
- run: npm ci
- run: npm test

Expand All @@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 12
node-version: 14
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
Expand All @@ -39,11 +39,11 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 12
node-version: 14
- run: npm ci
- uses: actions/setup-node@v2
with:
node-version: 12
node-version: 14
registry-url: 'https://npm.pkg.github.com'
scope: '@curveball'
- run: npm publish
Expand Down
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

0.3.0 (2022-09-03)
------------------

* Upgraded from `@curveball/core` to `@curveball/kernel`.

0.2.1 (2021-06-28)
------------------

Expand Down
Loading

0 comments on commit 31c0fad

Please sign in to comment.