chore(deps): bump @types/node from 22.5.5 to 22.7.4 in /examples/autocomplete in the minor-or-patch group #182
Workflow file for this run
This file contains 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: builds the autocomplete example usage of reference-lib | |
on: | |
push: | |
branches: ['main'] | |
paths: ['examples/autocomplete/**', 'reference-lib/**'] | |
pull_request: | |
branches: ['main'] | |
paths: ['examples/autocomplete/**', 'reference-lib/**'] | |
defaults: | |
run: | |
working-directory: ./examples/autocomplete | |
shell: bash | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- name: build the reference-lib | |
working-directory: ./reference-lib | |
run: | | |
npm ci | |
npm run build | |
- run: npm ci | |
- run: npm run build |