Update branding to use proper PullFlow naming conventions #97
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: Check Pull Request | |
| on: | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| name: Lint, Compile and Test | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version: '18' | |
| cache: yarn | |
| - name: Install packages | |
| run: yarn install | |
| - name: Lint code | |
| run: yarn lint | |
| - name: Compile code | |
| run: yarn compile | |
| - name: Run tests | |
| run: yarn test |