Skip to content

chore(deps-dev): bump @commitlint/cli from 17.1.2 to 17.7.0 #2171

chore(deps-dev): bump @commitlint/cli from 17.1.2 to 17.7.0

chore(deps-dev): bump @commitlint/cli from 17.1.2 to 17.7.0 #2171

Workflow file for this run

name: Build
on:
push:
branches-ignore:
- release/* # already building package/library when publishing
jobs:
build:
name: Build package & library (test)
runs-on: ubuntu-latest
steps:
- name: Checkout Git repository
uses: actions/checkout@v3
- name: Read .nvmrc
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
id: nvm
- name: Setup Node (uses version from .nvmrc)
uses: actions/setup-node@v3
with:
node-version: ${{ steps.nvm.outputs.NVMRC }}
- name: Cache npm
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Install Node dependencies
run: npm ci --no-audit --no-optional
- name: Setup OpenJDK
uses: actions/setup-java@v3
with:
distribution: adopt
java-version: 11
- name: Build package & library
run: npm run build