Skip to content

ci: gather test coverage #399

ci: gather test coverage

ci: gather test coverage #399

Workflow file for this run

# This is a Github Workflow that runs tests on any push or pull request.
# If the tests pass and this is a push to the master branch it also runs Semantic Release.
name: CI
on: [push, pull_request]
jobs:
test_push:
name: Push
if: ${{ github.event_name == 'push' }}
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3.1.0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Deps
run: npm i
- name: Run Node.js tests
run: npm run test:cov
- name: Codeclimate
if: github.ref == 'refs/heads/master'
uses: paambaati/codeclimate-action@v5.0.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageLocations: |
${{github.workspace}}/target/coverage/lcov.info:lcov
- name: Semantic Release
if: github.ref == 'refs/heads/master'
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_PROVENANCE: true
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
GIT_COMMITTER_NAME: ${{ secrets.GIT_COMMITTER_NAME }}
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }}
run: npm_config_yes=true npx zx-semrel
test_pr_bun:
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-22.04
name: PR with Bun
steps:
- name: Checkout
uses: actions/checkout@v3.1.0
- name: Setup Bun
uses: antongolub/action-setup-bun@v1
- name: Deps
run: |
bun install
ln -s ../ ./node_modules/npm-registry-firewall
- name: Run tests
timeout-minutes: 2
run: bun test:bun
test_pr_node:
if: ${{ github.event_name == 'pull_request' }}
name: PR Node.js v${{ matrix.node-version }}, OS ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-22.04, windows-2022 ]
node-version: [ 14, 20 ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3.1.0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Deps
run: npm i
# https://github.com/npm/cli/issues/4341#issuecomment-1040608101
- if: matrix.os == 'windows-2022' && matrix.node-version == 14
run: npm i -g npm@7
- if: matrix.os == 'windows-2022' && matrix.node-version != 14
run: npm i -g npm@latest
- name: Run tests
timeout-minutes: 2
run: npm run test:cov