Fix colors with date range select on light mode and make select options have a border #2413
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: Tests | |
on: [pull_request] | |
jobs: | |
lint: | |
name: ESLint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- name: Setup | |
id: setup | |
uses: prefecthq/actions-setup-nodejs@main | |
- name: Lint application | |
run: | | |
npm run lint | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- name: Setup | |
id: setup | |
uses: prefecthq/actions-setup-nodejs@main | |
- name: Build package | |
run: npm run build |