Revert "feat(retro): make columns scrollable instead of page" #142
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: Retro CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "19" | |
- name: Install dependencies | |
run: npm ci | |
- name: Prettier check | |
run: npm run format:check | |
- name: Lint | |
run: npm run lint | |
- name: Build app | |
run: npm run build | |
- name: Install playwright browsers | |
if: ${{ vars.SKIP_E2E != 'true' }} | |
run: npx playwright install --with-deps | |
- name: Run e2e tests | |
if: ${{ vars.SKIP_E2E != 'true' }} | |
run: npm run e2e |