Fix an issue where using em
units for column widths would cause the width to change depending on CSS letter-spacing
.
#351
Workflow file for this run
This file contains hidden or 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: CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
- name: Install Packages | |
run: |+ | |
npm ci | |
npm run ci:all | |
- name: Lint | |
run: |+ | |
npm run lint | |
npm run check | |
test: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
- name: Install Packages | |
run: |+ | |
npm ci | |
npm run ci:all | |
- name: Build | |
run: npm run build:ci | |
- name: Test | |
run: npm test -- --mrpm-max-workers=1 |