Skip to content

feat(Table): add action bar for bulk functions #3908

feat(Table): add action bar for bulk functions

feat(Table): add action bar for bulk functions #3908

Workflow file for this run

name: Tests
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache node_modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install modules
run: npm ci
- name: Build icons
run: npm run build:icons
- name: Run tests
run: npm run check