Skip to content

Update date range styling & specs #107

Update date range styling & specs

Update date range styling & specs #107

name: Run specs
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
deploy:
runs-on: ubuntu-latest
# Job steps
steps:
# Manual Checkout
- uses: actions/checkout@v4
# Set up Node
- uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Enable yarn latest using corepack
run: corepack enable
- name: Install dependencies
run: yarn
- name: Run Specs
run: yarn test
- name: Build
run: yarn tailwind && yarn build