chore(deps): Update all of commitlint to version 18.4.2 (#169) #201
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: Build & Test | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "v*" | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: "adopt" | |
java-version: 15 | |
- name: Build & Run Tests | |
run: | | |
set -e | |
node -v | |
npm -v | |
java --version | |
npm install | |
npm test | |
- name: Release Dry Run | |
run: npx commit-and-tag-version --dry-run | |
- name: Post Coverage | |
uses: codecov/codecov-action@v3 |