Skip to content

chore(deps-dev): Bump @commitlint/cli from 17.7.1 to 18.6.1 #359

chore(deps-dev): Bump @commitlint/cli from 17.7.1 to 18.6.1

chore(deps-dev): Bump @commitlint/cli from 17.7.1 to 18.6.1 #359

Workflow file for this run

name: Test
on:
push:
pull_request:
types:
- opened
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js/18
uses: actions/setup-node@v3
with:
node-version: 18
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn
- name: Test
run: yarn test