Skip to content

chore(deps): update dependency @commitlint/cli to v19.6.0 #2205

chore(deps): update dependency @commitlint/cli to v19.6.0

chore(deps): update dependency @commitlint/cli to v19.6.0 #2205

Workflow file for this run

name: Verify
on: [pull_request]
env:
NODE_VERSION: 20.x
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Verify formatting
run: yarn format:check
- name: Lint
run: yarn lint
- name: Test
run: yarn test --coverage --silent
- name: Upload coverage to Coveralls
uses: coverallsapp/github-action@cfd0633edbd2411b532b808ba7a8b5e04f76d2c8 # v2.3.4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Build
run: yarn build
notification:
if: always()
name: notification
needs: [build]
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- uses: technote-space/[email protected]
- uses: reside-eng/[email protected]
with:
current-status: ${{ env.WORKFLOW_CONCLUSION }}
slack-webhook: ${{ secrets.SLACK_WEBHOOK_PLATFORM_PROD }}
github-token: ${{ secrets.GITHUB_TOKEN }}