Skip to content

feat: Add panel layout settings & Add icons for settings list #136

feat: Add panel layout settings & Add icons for settings list

feat: Add panel layout settings & Add icons for settings list #136

Workflow file for this run

name: Unit Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
# Use `-f` flag to force install eslint-plugin-import
- run: npm install -f
- name: Run Jest tests
run: npm run test-coverage
- name: Upload test results to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}