feat(cb2-18270): added LOAD_STATUS_TEST list #735
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: CI | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| run-ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 📨 Checkout | |
| uses: actions/checkout@v6 | |
| - name: 🔍 Read .nvmrc | |
| id: nvm | |
| run: echo "NVMRC=$(cat .nvmrc)" >> $GITHUB_ENV | |
| - name: ⚙️ Setup Node.js ${{ env.NVMRC }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ env.NVMRC }} | |
| cache: 'npm' | |
| - name: ➕ Install dependencies | |
| run: npm ci --include=optional | |
| - name: ⚒️ Build project | |
| run: npm run build --if-present --ws | |
| - name: 📝 Lint codebase | |
| run: npm run lint --if-present --ws | |
| - name: 🧪️ Execute unit tests with coverage | |
| run: npm run test:coverage --if-present --ws |