Bump vite from 6.3.5 to 6.3.6 #108
Workflow file for this run
  
    
      This file contains hidden or 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 and test | |
| on: pull_request | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Install Node.js 18.x | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: 18.x | |
| registry-url: https://registry.npmjs.org/ | |
| - name: Install lib dependencies | |
| run: npm install | |
| - name: Serve test server | |
| run: npx nx serve-test halstack-react-hal | |
| - name: Test lib | |
| run: npx nx test halstack-react-hal | |
| - name: Stop json-server | |
| run: kill $(lsof -t -i:3000) | |
| - name: Build library | |
| run: npx nx build halstack-react-hal | |
| - name: Copy README | |
| run: npx nx run copy |