style(Chips/QueryBuilder): Fixes to chip-list width max/ellipsis appearance #2176
Workflow file for this run
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: CI | |
on: [pull_request] | |
jobs: | |
build: | |
name: Build & Test | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 25 | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Setup NodeJS | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 20.10.0 | |
- name: Install Dependencies | |
run: | | |
npm install | |
- name: Test | |
run: | | |
npm run lint | |
npm test | |
- name: Build | |
run: | | |
npm run build:ci | |
- uses: actions/upload-artifact@master | |
with: | |
name: build-artifact | |
path: dist | |
publish: | |
runs-on: ubuntu-20.04 | |
needs: build | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/download-artifact@master | |
with: | |
name: build-artifact | |
path: dist | |
- uses: bvkimball/[email protected] | |
- env: | |
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }} | |
run: sh snapshot-publish |