Merge pull request #197 from ryan-ally/snyk-fix-f0b3091cf77419ccc2dab… #982
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: Frontend Test | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v2 | |
| - name: Setup Node | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: 12.18.1 | |
| - name: Run Node test | |
| run: | | |
| npm install prettier --prefix ./pkg/new-ui/v1beta1/frontend | |
| make prettier-check |