fix: add theme color to date and time picker #64
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
| # 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 |