Skip to content

Commit

Permalink
chore: make extension works with node 10 by default (#196)
Browse files Browse the repository at this point in the history
* chore: make extension works with node 10 by default

Signed-off-by: Luca Stocchi <lstocchi@redhat.com>

* fix ci workflow

Signed-off-by: Luca Stocchi <lstocchi@redhat.com>

* fix failing tests

Signed-off-by: Luca Stocchi <lstocchi@redhat.com>

* update mocha lib version to make it work with node 10

Signed-off-by: Luca Stocchi <lstocchi@redhat.com>

Signed-off-by: Luca Stocchi <lstocchi@redhat.com>
  • Loading branch information
lstocchi authored Oct 3, 2022
1 parent c65a02c commit 8798aa4
Show file tree
Hide file tree
Showing 15 changed files with 7,998 additions and 868 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '10', '8', '6' ]
node: [ '16', '14', '10' ]
name: Node ${{ matrix.node }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v1.4.1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm run setup
Expand All @@ -35,9 +35,9 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v1.4.1
uses: actions/setup-node@v3
with:
node-version: '10.x'
- run: npm run setup
Expand All @@ -49,9 +49,9 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v1.4.1
uses: actions/setup-node@v3
with:
node-version: '10.x'
- run: npm run setup
Expand Down
Loading

0 comments on commit 8798aa4

Please sign in to comment.