Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/npm_and_yarn/socket.io-parser-4…
Browse files Browse the repository at this point in the history
….0.5
  • Loading branch information
PodaruDragos authored Sep 13, 2023
2 parents 3747470 + d789647 commit 9914c56
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
browser:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: nuget/setup-nuget@v1
- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
- run: npm install
- run: nuget install Selenium.WebDriver.IEDriver -Version 4.0.0.1
- run: npm run test:browser
Expand All @@ -26,16 +26,16 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x]
node-version: [18.x, 20.x]
ts-project: [src/tsconfig.json, src/tsconfig-es6.json]
env:
TS_NODE_PROJECT: ${{ matrix.ts-project }}

steps:
- name: Checkout Project
uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # renovate: tag=v2
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@1f8c6b94b26d0feae1e387ca63ccbdc44d27b561 # renovate: tag=v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Run tests
run: npm test --coverage
- name: Store code coverage report
uses: actions/upload-artifact@82c141cc518b40d92cc801eee768e7aafc9c2fa2 # renovate: tag=v2
uses: actions/upload-artifact@v3
with:
name: coverage
path: coverage/
Expand All @@ -55,16 +55,16 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x, 16.x]
node-version: [18.x, 20.x]
ts-project: [src/tsconfig.json, src/tsconfig-es6.json]
env:
TS_NODE_PROJECT: ${{ matrix.ts-project }}

steps:
- name: Checkout Project
uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # renovate: tag=v2
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@1f8c6b94b26d0feae1e387ca63ccbdc44d27b561 # renovate: tag=v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
Expand All @@ -79,16 +79,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # renovate: tag=v2
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Download Coverage report
uses: actions/download-artifact@f023be2c48cc18debc3bacd34cb396e0295e2869 # renovate: tag=v2
uses: actions/download-artifact@v3
with:
name: coverage
path: coverage/
- name: Codecov Upload
uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # renovate: tag=v2
uses: codecov/codecov-action@v3
with:
directory: coverage/
fail_ci_if_error: true
fail_ci_if_error: true

0 comments on commit 9914c56

Please sign in to comment.