feat: release datepicker and tab menu #1753
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: 'Unit Tests' | |
# Event for the workflow | |
# Only trigger the current job when occurs | |
# a pull request target from develop and master branchs | |
# and a push to develop and master branches | |
on: | |
push: | |
branches: [ master, develop, main ] | |
pull_request: | |
branches: [ master, develop, main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- run: yarn | |
- run: yarn test:unit |