Skip to content

Commit

Permalink
Fix issue with node version in ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nev21 committed Oct 24, 2023
1 parent 3d7a098 commit 5f9ac7f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:

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

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node_version }}
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
node-version: ${{ matrix.node }}
- run: npm install
- name: Build
run: npm run build --verbose
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The Promise based Task Scheduler supports the serialized execution of tasks usin
> All of the provided Promise implementations support usage patterns via either `await` or with the included helper functions (`doAwait`, `doFinally`, `doAwaitresponse`), you can also mix and match them (use both helper and `await`) as required by your use cases.
### Test Environments
- Node (12, 14, 16, 18)
- Node (16, 18, 20)
- Browser (Chromium - headless)
- Web Worker (Chromium - headless)

Expand Down

0 comments on commit 5f9ac7f

Please sign in to comment.