-
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: refactor ci workflow to test on supported lts node versions an…
…d also test on windows and macos (#31) Co-authored-by: Ulises Gascón <[email protected]> Co-authored-by: Sebastian Beltran <[email protected]>
- Loading branch information
1 parent
f7f8363
commit 23d0277
Showing
2 changed files
with
95 additions
and
79 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,101 +1,114 @@ | ||
name: ci | ||
|
||
on: | ||
- pull_request | ||
- push | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
- '3.x' | ||
paths-ignore: | ||
- '*.md' | ||
pull_request: | ||
paths-ignore: | ||
- '*.md' | ||
|
||
# Cancel in progress workflows | ||
# in the scenario where we already had a run going for that PR/branch/tag but then triggered a new run | ||
concurrency: | ||
group: "${{ github.workflow }} ✨ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}" | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test: | ||
lint: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
name: | ||
- Node.js 18.x | ||
- Node.js 19.x | ||
- Node.js 20.x | ||
- Node.js 21.x | ||
- Node.js 22.x | ||
|
||
include: | ||
- name: Node.js 18.x | ||
node-version: "18" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup Node.js {{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 'lts/*' | ||
|
||
- name: Node.js 19.x | ||
node-version: "19" | ||
- name: Install dependencies | ||
run: npm install --ignore-scripts --only=dev | ||
|
||
- name: Node.js 20.x | ||
node-version: "20" | ||
- name: Run lint | ||
run: npm run lint | ||
|
||
- name: Node.js 21.x | ||
node-version: "21" | ||
test: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macos-latest] | ||
node-version: [18, 19, 20, 21, 22, 23] | ||
# Node.js release schedule: https://nodejs.org/en/about/releases/ | ||
|
||
- name: Node.js 22.x | ||
node-version: "22" | ||
name: Node.js ${{ matrix.node-version }} - ${{matrix.os}} | ||
|
||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install Node.js ${{ matrix.node-version }} | ||
shell: bash -eo pipefail -l {0} | ||
run: | | ||
nvm install --default ${{ matrix.node-version }} | ||
dirname "$(nvm which ${{ matrix.node-version }})" >> "$GITHUB_PATH" | ||
- name: Configure npm | ||
run: | | ||
if [[ "$(npm config get package-lock)" == "true" ]]; then | ||
npm config set package-lock false | ||
else | ||
npm config set shrinkwrap false | ||
fi | ||
- name: Remove npm module(s) ${{ matrix.npm-rm }} | ||
run: npm rm --silent --save-dev ${{ matrix.npm-rm }} | ||
if: matrix.npm-rm != '' | ||
|
||
- name: Install npm module(s) ${{ matrix.npm-i }} | ||
run: npm install --save-dev ${{ matrix.npm-i }} | ||
if: matrix.npm-i != '' | ||
|
||
- name: Install Node.js dependencies | ||
run: npm install | ||
|
||
- name: List environment | ||
id: list_env | ||
shell: bash | ||
run: | | ||
echo "node@$(node -v)" | ||
echo "npm@$(npm -v)" | ||
npm -s ls ||: | ||
(npm -s ls --depth=0 ||:) | awk -F'[ @]' 'NR>1 && $2 { print "::set-output name=" $2 "::" $3 }' | ||
- name: Run tests | ||
shell: bash | ||
run: | | ||
if npm -ps ls nyc | grep -q nyc; then | ||
- uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
|
||
- name: Setup Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Configure npm loglevel | ||
run: | | ||
npm config set loglevel error | ||
shell: bash | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Output Node and NPM versions | ||
run: | | ||
echo "Node.js version: $(node -v)" | ||
echo "NPM version: $(npm -v)" | ||
- name: Run tests | ||
shell: bash | ||
run: | | ||
npm run test-ci | ||
else | ||
npm test | ||
fi | ||
cp coverage/lcov.info "coverage/${{ matrix.node-version }}.lcov" | ||
- name: Lint code | ||
if: steps.list_env.outputs.eslint != '' | ||
run: npm run lint | ||
- name: Collect code coverage | ||
run: | | ||
mv ./coverage "./${{ matrix.node-version }}" | ||
mkdir ./coverage | ||
mv "./${{ matrix.node-version }}" "./coverage/${{ matrix.node-version }}" | ||
- name: Collect code coverage | ||
uses: coverallsapp/github-action@master | ||
if: steps.list_env.outputs.nyc != '' | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
flag-name: run-${{ matrix.test_number }} | ||
parallel: true | ||
- name: Upload code coverage | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: coverage | ||
path: ./coverage | ||
retention-days: 1 | ||
|
||
coverage: | ||
needs: test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Upload code coverage | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install lcov | ||
shell: bash | ||
run: sudo apt-get -y install lcov | ||
|
||
- name: Collect coverage reports | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: coverage | ||
path: ./coverage | ||
|
||
- name: Merge coverage reports | ||
shell: bash | ||
run: find ./coverage -name lcov.info -exec printf '-a %q\n' {} \; | xargs lcov -o ./coverage/lcov.info | ||
|
||
- name: Upload coverage report | ||
uses: coverallsapp/github-action@master | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
parallel-finished: true | ||
github-token: ${{ secrets.GITHUB_TOKEN }} |
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