Add ssot-registry dev dependency #27
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: | |
| push: | |
| branches: [main] | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - name: Install npmctl from PyPI | |
| run: python -m pip install --upgrade "npmctl>=0.3.8" "npmctl-namecheap>=0.3.8" | |
| - run: npm ci | |
| - run: npm run check | |
| - run: npm run build | |
| - name: Validate Docker proxy target | |
| run: npm run proxy:target-check | |
| - name: Validate npmctl desired state | |
| run: npmctl validate desired-state | |
| - run: npm run docker:build |