something is wrong with CI :(

This commit is contained in:
41666 2023-05-22 00:19:56 -04:00
parent dc1a65941f
commit 15db46c1b2
2 changed files with 2 additions and 4 deletions

View file

@ -13,7 +13,7 @@ jobs:
- uses: actions/setup-node@v2.5.1
with:
node-version: '16'
node-version: '20'
cache: yarn
- run: yarn install --frozen-lockfile

View file

@ -1,6 +1,4 @@
import { decodeTime, monotonicFactory } from 'ulid-workers';
const ulid = monotonicFactory();
import { decodeTime, ulid } from 'ulid-workers';
export const getID = () => ulid();
export const dateFromID = (id: string) => decodeTime(id);