Merge pull request #69 from afharo/handle-malformed-head-responses #314
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: Node CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [14.x, 16.x, 18.x, 19.x, 20.x] | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
# workaround for failing tests on Node.js 14.x | |
# see https://github.com/actions/setup-node/issues/411 | |
- name: Force install specific npm version | |
run: | | |
npm install --global [email protected] | |
npm install --global [email protected] | |
- name: Install | |
run: | | |
npm install | |
- name: Lint | |
run: | | |
npm run lint | |
- name: Unit test | |
run: | | |
npm run test:unit | |
- name: Acceptance test | |
run: | | |
npm run test:acceptance | |
# TODO: migrate to Buildkite, Codecov is no longer used at Elastic | |
# code-coverage: | |
# name: Code coverage | |
# runs-on: ubuntu-latest | |
# strategy: | |
# matrix: | |
# node-version: [18.x] | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Use Node.js ${{ matrix.node-version }} | |
# uses: actions/setup-node@v2 | |
# with: | |
# node-version: ${{ matrix.node-version }} | |
# - name: Install | |
# run: | | |
# npm install | |
# - name: Code coverage report | |
# run: | | |
# npm run test:coverage-report | |
# - name: Upload coverage to Codecov | |
# uses: codecov/codecov-action@v3 | |
# with: | |
# file: ./coverage.lcov | |
# fail_ci_if_error: true | |
# TODO: renabled this as soon as the project is back at 100% | |
# - name: Code coverage 100% | |
# run: | | |
# npm run test:coverage-100 | |
license: | |
name: License check | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install | |
run: | | |
npm install | |
- name: License checker | |
run: | | |
npm run license-checker |