chore(deps): bump date-fns from 3.6.0 to 4.1.0 #259
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: branch | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
name: Test on node ${{matrix.node}} and ${{matrix.os}} | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
node: | |
- 18 | |
- 20 | |
- 22 | |
os: | |
- macos-latest | |
- ubuntu-latest | |
- windows-latest | |
env: | |
YARN_NODE_LINKER: node-modules | |
steps: | |
- uses: actions/checkout@v4.1.7 | |
with: | |
# awaiting https://github.com/facebook/jest/issues/11271 | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4.0.2 | |
with: | |
node-version: ${{matrix.node}} | |
# awaiting https://github.com/actions/checkout/pull/155 | |
- run: git -c protocol.version=2 fetch --no-recurse-submodules --no-tags --progress --prune origin ${{github.event.pull_request.base.ref}}:${{github.event.pull_request.base.ref}} | |
- run: corepack enable | |
- run: yarn install | |
env: | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
- run: yarn libyear | |
continue-on-error: true | |
- run: npm run libyear | |
continue-on-error: true | |
- run: pnpm libyear | |
continue-on-error: true | |
- run: yarn compile | |
- run: yarn test:ci:branch | |
- run: yarn lint:diff | |
- run: yarn format:diff --branch --check | |
timeout-minutes: 15 |