Skip to content

Remove dayjs dependency (#128) #94

Remove dayjs dependency (#128)

Remove dayjs dependency (#128) #94

Workflow file for this run

name: Unit tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm ci
- name: Verify lint
run: npm run lint
- name: Eslint-check
run: npm run eslint-check
- name: Run unit tests
run: npm run test