Skip to content

Commit

Permalink
Test API with old node versions (open-telemetry#3296)
Browse files Browse the repository at this point in the history
Co-authored-by: Chengzhong Wu <[email protected]>
  • Loading branch information
dyladan and legendecas authored Oct 14, 2022
1 parent efb0275 commit 07a16b7
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,3 +167,31 @@ jobs:
run: npm run test:webworker
- name: Report Coverage
run: npm run codecov:webworker
api-eol-node-test:
strategy:
fail-fast: false
matrix:
node_version:
- "8"
- "10"
- "12"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}

- name: Build
working-directory: ./api
run: |
npm install --ignore-scripts
npm install @types/mocha@^7 mocha@^7 ts-loader@^8 ts-mocha@^8
node ../scripts/version-update.js
tsc --build tsconfig.json tsconfig.esm.json
- name: Test
working-directory: ./api
run: npm test

0 comments on commit 07a16b7

Please sign in to comment.