Add default slack-hook params to fix the flux kustomize-controller errors #680
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 CDK module | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| workflow_dispatch: {} | |
| jobs: | |
| cdk-ci: | |
| strategy: | |
| matrix: | |
| platform: [ubuntu-latest, macos-latest] | |
| node-version: [16, 18] | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Build and test NPM packages | |
| run: | | |
| cd infrastructure/ | |
| npm ci | |
| npm run build | |
| # TODO: enable it when we have at least one test. | |
| # npm test |