Skip to content

fix: add theme color to date and time picker #64

fix: add theme color to date and time picker

fix: add theme color to date and time picker #64

Workflow file for this run

# This workflow is triggered when commits gets pushed to main branch
# It calls the reusable workflow lint-tests
name: Push to Main
concurrency:
group: push-to-main # to run only one build of this type at a time
on:
push:
branches:
- main
jobs:
release:
name: Lint, Tests, and Release
runs-on: ubuntu-latest
env:
HUSKY: 0
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: yarn
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Lint all codebase
run: yarn lint
- name: Run all tests
run: yarn test
- name: Release
env:
GITHUB_TOKEN: ${{secrets.CI_GITHUB_TOKEN}}
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
run: yarn release