Skip to content

Bump date-fns from 3.4.0 to 3.5.0 #106

Bump date-fns from 3.4.0 to 3.5.0

Bump date-fns from 3.4.0 to 3.5.0 #106

Workflow file for this run

name: Tape
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18.x
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Node install
run: npm ci
- name: Lint
run: npm run lint
- name: Unit tests
run: npm run test