chore: bumps release version #575
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: CI Format | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - master | |
| pull_request: | |
| branches: | |
| - develop | |
| - master | |
| jobs: | |
| prettier: | |
| name: Check format with prettier | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: sanger/.github/.github/actions/setup/checkout@master | |
| - name: Setup Node | |
| uses: sanger/.github/.github/actions/setup/node@master | |
| - name: Install npm dependencies | |
| uses: sanger/.github/.github/actions/install/npm@master | |
| - name: Run npm pretty | |
| run: >- | |
| npm run pretty | |
| eslint: | |
| name: Lint with ESLint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: sanger/.github/.github/actions/setup/checkout@master | |
| - name: Setup Node | |
| uses: sanger/.github/.github/actions/setup/node@master | |
| - name: Install npm dependencies | |
| uses: sanger/.github/.github/actions/install/npm@master | |
| - name: Lint using ESLint | |
| run: >- | |
| npm run lint |