Fixed routing to combo example from input home #11
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 CI | |
on: | |
pull_request: | |
types: [closed] | |
branches: [15.x.x, hotfix/15.*] | |
paths: ['src/**'] | |
jobs: | |
build: | |
if: github.event_name == 'pull_request' && github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout code' | |
uses: actions/checkout@v3 | |
- name: 'Cache node modules' | |
uses: actions/cache@v3 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Node 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.10.0 | |
- name: npm install and npm run build | |
run: | | |
npm i | |
npm run build | |