Feature/romka/bump version #202
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
| on: pull_request | |
| name: Pull Request | |
| jobs: | |
| validate: | |
| name: Run validations | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| with: | |
| fetch-depth: 0 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '18.18.1' | |
| - name: Install Yarn | |
| run: npm install -g [email protected] | |
| - run: yarn install | |
| - run: yarn prettier | |
| - run: yarn lint | |
| - name: Build packages | |
| run: yarn build | |
| - name: Test packages | |
| run: yarn test |