Skip to content

chore(deps): bump date-fns to v4 #250

chore(deps): bump date-fns to v4

chore(deps): bump date-fns to v4 #250

Workflow file for this run

name: build&test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 23
cache: "yarn"
- name: Install
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Test
run: yarn test:coverage
- uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
flags: unittests
token: ${{ secrets.CODECOV_TOKEN }}