This repository was archived by the owner on Jun 28, 2025. It is now read-only.
Merge pull request #130 from vim/feature/contributors-guide #165
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: Verify CMS | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - development | |
| - 'feature/**' | |
| paths: | |
| - cms/** | |
| pull_request: | |
| branches: | |
| - main | |
| - development | |
| paths: | |
| - cms/** | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18' | |
| - name: Install cms dependencies | |
| run: cd cms && npm ci | |
| - name: Lint cms | |
| run: cd cms && npm run lint | |
| - name: Build cms | |
| run: cd cms && npm run build |