Skip to content

Bump react-day-picker from 8.10.1 to 9.1.4 #2499

Bump react-day-picker from 8.10.1 to 9.1.4

Bump react-day-picker from 8.10.1 to 9.1.4 #2499

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node 18
uses: actions/setup-node@v1
with:
node-version: 18.x
- name: Cache node_modules
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
uses: bahmutov/npm-install@v1
- name: Lint
run: yarn lint
env:
CI: true
- name: Format
run: yarn format
env:
CI: true
- name: Typecheck
run: yarn typecheck
env:
CI: true
- name: Build
run: yarn build
env:
CI: true