Create function to check wether a date corresponds to day #51
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: PR checks | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
pr_checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: yarn install | |
env: | |
CI: true | |
- name: Run Typescript | |
run: yarn tsc | |
env: | |
CI: true | |
# Fetch master branch and run changing test cases | |
- name: Run Unit tests | |
run: yarn test:ci | |
env: | |
CI: true |