PI-1449 Fix search suggestions for multi-term queries #148
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: Build component | |
on: | |
push: | |
branches-ignore: | |
- main | |
paths: | |
- 'packages/probation-search-frontend/**' | |
- '.github/workflows/build.yml' | |
jobs: | |
build: | |
name: Build | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x, lts/*] | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
defaults: | |
run: | |
working-directory: packages/probation-search-frontend | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
cache: npm | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm clean-install | |
- name: Build | |
run: npm run build |