chore(deps): update dependency lint-staged to v16.2.3 #75
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 Vue3 - CI | |
permissions: | |
contents: read | |
pull-requests: write | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'apps/hello-carbon-vue3/**' | |
- '.github/workflows/app-vue3-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-carbon-vue3 | |
run: npm run ci:lint | |
- name: Build app | |
working-directory: apps/hello-carbon-vue3 | |
run: npm run build |