Skip to content

ci: conventional commits #9

ci: conventional commits

ci: conventional commits #9

Workflow file for this run

name: CI
on:
pull_request:
branches: [main, develop]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x, 20.x ]
steps:
-
name: Checkout
uses: actions/[email protected]
-
name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
-
name: Install Dependencies
run: npm install
-
name: Run Build
run: npm run build
-
name: Unit Tests with Coverage
run: npm run test:cov