Skip to content

fix(waves): even-fill the 2-tab waves bar + make the + visible #615

fix(waves): even-fill the 2-tab waves bar + make the + visible

fix(waves): even-fill the 2-tab waves bar + make the + visible #615

Workflow file for this run

name: Lint & Test
on:
pull_request:
push:
branches:
- development
concurrency:
group: test-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
lint-and-test:
name: Lint & Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Unit tests
run: yarn test:ci