Skip to content

chore(main): release 4.0.4 (#276) #900

chore(main): release 4.0.4 (#276)

chore(main): release 4.0.4 (#276) #900

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- run: npm ci
- run: npm run lint
test:
name: test - Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 20
- 18
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm test
coverage:
name: Coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- run: npm ci
- uses: paambaati/codeclimate-action@v8.0.0
env:
CC_TEST_REPORTER_ID: 47dd542cbe03d857103cf6035bfde3aefc583c514273bf5bd6c3120bc4a78856
with:
coverageCommand: npm run coverage