Skip to content

Bump date-fns from 2.30.0 to 3.3.1 #279

Bump date-fns from 2.30.0 to 3.3.1

Bump date-fns from 2.30.0 to 3.3.1 #279

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [16, 18, latest]
os: [ubuntu-latest]
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Setup project
run: npm ci
- name: Run linter
run: npm run lint
- name: Run tests
run: npm run test