feat: Allows height to be not explicit height, e.g. 'inherit' or '100%' #23
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: Run tests (branch) | |
on: | |
push: | |
branches-ignore: | |
- master | |
- alpha | |
- beta | |
- next | |
tags-ignore: | |
- 'v*' | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
name: Node.js ${{ matrix.node-version }} | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm install | |
env: | |
CI: true | |
- name: Test | |
run: npm run test | |
- name: Build | |
run: npm run build:dist |