chore(deps): update commitlint monorepo to v20 (major) #74
This file contains hidden or 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: App Carbon11 Vue3 - CI | |
permissions: | |
contents: read | |
pull-requests: write | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'apps/hello-carbon11-vue3/**' | |
- '.github/workflows/app-carbon11-ci.yml' | |
- 'package-lock.json' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js from .nvmrc | |
uses: actions/setup-node@v5 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Install dependencies | |
run: npm install | |
- name: lint | |
working-directory: apps/hello-carbon11-vue3 | |
run: npm run ci:lint | |
- name: Build app | |
working-directory: apps/hello-carbon11-vue3 | |
run: npm run build |