This repository was archived by the owner on Aug 11, 2025. It is now read-only.
chore: Bump canonical/sdcore-github-workflows from 2.3.5 to 2.3.6 in the github_actions group #2502
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: Main branch CI | |
| on: | |
| pull_request: | |
| types: [edited, opened, reopened, synchronize] | |
| branches: | |
| - main | |
| - v** | |
| push: | |
| branches: | |
| - main | |
| - v** | |
| schedule: | |
| - cron: "0 0 * * 0" | |
| jobs: | |
| codeql: | |
| uses: ./.github/workflows/codeql-analysis.yaml | |
| nms-lint-report: | |
| uses: ./.github/workflows/nms-lint-report.yaml | |
| run-unit-tests: | |
| needs: nms-lint-report | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18' | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Run Jest tests | |
| run: npx jest --ci --coverage | |
| build-nms: | |
| needs: nms-lint-report | |
| uses: ./.github/workflows/build-nms.yaml | |
| build-rock: | |
| needs: build-nms | |
| uses: canonical/sdcore-github-workflows/.github/workflows/[email protected] | |
| scan-rock: | |
| needs: build-rock | |
| uses: canonical/sdcore-github-workflows/.github/workflows/[email protected] | |
| publish-rock: | |
| if: github.ref_name == 'main' | |
| needs: scan-rock | |
| uses: canonical/sdcore-github-workflows/.github/workflows/[email protected] |