Skip to content

chore(deps): update dependency lint-staged to v16.2.3 #75

chore(deps): update dependency lint-staged to v16.2.3

chore(deps): update dependency lint-staged to v16.2.3 #75

Workflow file for this run

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