Skip to content

Commit

Permalink
Fix CI (#1520)
Browse files Browse the repository at this point in the history
Co-authored-by: Podaru Dragos <[email protected]>
Co-authored-by: James Monger <[email protected]>
  • Loading branch information
3 people authored Sep 13, 2023
1 parent 0c800ff commit d789647
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ 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: 18
- run: npm install
Expand All @@ -33,9 +33,9 @@ jobs:

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 @@ -61,34 +61,34 @@ jobs:
TS_NODE_PROJECT: ${{ matrix.ts-project }}

steps:
- name: Checkout Project
uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # renovate: tag=v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@1f8c6b94b26d0feae1e387ca63ccbdc44d27b561 # renovate: tag=v2
with:
node-version: ${{ matrix.node-version }}
cache: npm
registry-url: https://registry.npmjs.org/
- run: npm cache clean --force
- run: npm ci
- run: npm run build --if-present
- name: Checkout Project
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
registry-url: https://registry.npmjs.org/
- run: npm cache clean --force
- run: npm ci
- run: npm run build --if-present

Upload_Coverage_Report:
name: Upload coverage report to codecov
needs: [Testing]
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 d789647

Please sign in to comment.