Skip to content

Commit

Permalink
Merge pull request #206 from iambumblehead/remove-node-19-test-job
Browse files Browse the repository at this point in the history
remove node-19 test job
  • Loading branch information
iambumblehead authored May 31, 2023
2 parents 1737bf2 + 005d045 commit 3fab421
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
timeout-minutes: 12
strategy:
matrix:
node-version: [18.x]
node-version: [20.x]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:
- name: lint
uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: '20.x'
- run: npm install
- run: npm run lint
4 changes: 2 additions & 2 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@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
- run: npm install
- run: npm run build --if-present
- run: npm run test-ci
Expand All @@ -40,7 +40,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 20
registry-url: https://npm.pkg.github.com/
- name: Insert repository owner as scope into package name
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
# node-14's npm must be updated, but no longer updatable due to:
# https://github.com/npm/cli/issues/2663
# because of this, node-14 test strategy is removed :(
node-version: [16.x, 18.x, 19.x, 20.x]
node-version: [16.x, 18.x, 20.x]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# changelog

* 2.3.0 _May.30.2023_
* 2.3.0 _May.31.2023_
* [add initial support](https://github.com/iambumblehead/esmock/pull/205) for the solution to "globalThis" mocks,
* support injecting definitions into the mock import tree,
* demonstrate mock setTimeout, fetch and Date scenarious at unit-tests
* [remove node 19](https://github.com/iambumblehead/esmock/pull/206) test job, update remaining jobs to use node 20
* 2.2.3 _May.16.2023_
* [add node v21 nightly](https://github.com/iambumblehead/esmock/pull/199) to test ci pipeline
* send wide uri definitions to loader using loader worker
Expand Down

0 comments on commit 3fab421

Please sign in to comment.