chore(deps-dev): bump the dev-dependencies group in /reference-lib with 2 updates #179
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 |