[STK-90][REFACTOR] - Modal component dividers, DOM tree improvements, docs enhancement, Nextjs errors fixing #210
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: Continous Integration | |
on: | |
push: | |
branches: | |
- main | |
- production | |
- develop | |
pull_request: | |
types: [opened, synchronize, reopened] | |
branches: | |
- main | |
- production | |
- develop | |
concurrency: | |
group: ci-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: π§π»βπ» Checkout code | |
uses: actions/checkout@v3 | |
- name: π₯· Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/hydrogen | |
check-latest: true | |
cache: "yarn" | |
- name: πͺ Install dependencies | |
run: yarn install --immutable | |
- name: π Typecheck | |
run: yarn typecheck | |
- name: π¬ Lint | |
run: yarn lint | |
- name: π οΈ build | |
run: yarn build:app |