TP-2287: Grid position #651
Workflow file for this run
This file contains 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: Integration tests | |
on: | |
pull_request: | |
branches: | |
- development | |
jobs: | |
build: | |
name: Build Jopi | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Installing node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 20 | |
registry-url: 'https://registry.npmjs.org' | |
- name: Installing yarn | |
run: yarn install | |
- name: Test | |
run: yarn test | |
- name: Run coverage | |
run: yarn jest --coverage | |
- name: Build Jopi | |
run: yarn build |