Add cni-component-manifest command #1254
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: Test | |
| on: [push] | |
| jobs: | |
| build: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Install Dependencies | |
| uses: borales/actions-yarn@v3.0.0 | |
| with: | |
| cmd: install | |
| - name: Check Formatting | |
| uses: borales/actions-yarn@v3.0.0 | |
| with: | |
| cmd: run check | |
| - name: Build | |
| uses: borales/actions-yarn@v3.0.0 | |
| with: | |
| cmd: run build | |
| - name: Run Tests | |
| uses: borales/actions-yarn@v3.0.0 | |
| with: | |
| cmd: run test | |
| - name: Run Type Tests | |
| uses: borales/actions-yarn@v3.0.0 | |
| with: | |
| cmd: run tsd |