chore(release): 5.17.0 #350
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: yarn | |
- run: yarn --frozen-lockfile | |
- run: yarn lint | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
node-version: [10.x, 12.x, 14.x, 16.x, 18.x, 20.x, 22.x] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/github-script@v7 | |
id: calculate_architecture | |
with: | |
result-encoding: string | |
script: | | |
if ('${{ matrix.os }}' === 'macos-latest' && ('${{ matrix['node-version'] }}' === '10.x' || '${{ matrix['node-version'] }}' === '12.x' || '${{ matrix['node-version'] }}' === '14.x')) { | |
return "x64" | |
} else { | |
return '' | |
} | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
architecture: ${{ steps.calculate_architecture.outputs.result }} | |
cache: yarn | |
- name: Install dependencies | |
run: | | |
yarn upgrade typescript@^4 --ignore-engines | |
yarn --frozen-lockfile | |
if: matrix.node-version == '10.x' || matrix.node-version == '12.x' | |
- name: Install dependencies | |
run: yarn --frozen-lockfile | |
if: matrix.node-version != '10.x' | |
- name: Run tests with coverage | |
run: npm run test:coverage -- --ci | |
- if: ${{ matrix.os != 'windows-latest' }} | |
uses: codecov/codecov-action@v4 |