Skip to content
This repository was archived by the owner on May 25, 2025. It is now read-only.

Commit cb4feda

Browse files
fix: deps
1 parent 5d59820 commit cb4feda

File tree

4 files changed

+592
-875
lines changed

4 files changed

+592
-875
lines changed

.github/workflows/default.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,7 @@ jobs:
1111
# CC_TEST_REPORTER_ID: 59622194cc44d91d2d1d239dffbe6af31e8cb985e6e6369c0743b67ad2cc8713
1212
steps:
1313
- { uses: actions/checkout@v2, with: { persist-credentials: false } }
14-
- { uses: actions/setup-node@v1, with: { node-version: 14 } }
15-
- uses: actions/cache@v2
16-
with:
17-
path: ./node_modules
18-
key: deps-v1-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
14+
- { uses: actions/setup-node@v2, with: { node-version: 16, cache: 'yarn' } }
1915

2016
- name: deps
2117
run: yarn --frozen-lockfile
@@ -29,8 +25,3 @@ jobs:
2925
# ./cc-test-reporter before-build
3026
yarn test-ci
3127
# ./cc-test-reporter after-build -t lcov
32-
33-
- uses: actions/upload-artifact@v2
34-
with: { name: 'unit.xml', path: 'tmp/jest/unit.xml' }
35-
- uses: actions/upload-artifact@v2
36-
with: { name: 'coverage-unit', path: 'coverage/lcov-report' }

.github/workflows/release.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,14 @@ jobs:
1111
env: { NODE_OPTIONS: '--max-old-space-size=3200' }
1212
steps:
1313
- { uses: actions/checkout@v2, with: { persist-credentials: true } }
14-
- { uses: actions/setup-node@v1, with: { node-version: 14 } }
14+
- { uses: actions/setup-node@v2, with: { node-version: 16, cache: 'yarn' } }
1515

1616
# Cache for npm/npx in ~/.npm
1717
- uses: actions/cache@v2
1818
with:
1919
path: ~/.npm
2020
key: npm-v1-${{ runner.os }}
2121

22-
# Normal cache for yarn in ./node_modules
23-
- uses: actions/cache@v2
24-
with:
25-
path: ./node_modules
26-
key: deps-v1-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
27-
2822
- name: yarn
2923
run: yarn --frozen-lockfile
3024

src/sqlite.db.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ import {
44
CommonDBCreateOptions,
55
CommonDBOptions,
66
CommonDBSaveOptions,
7-
ObjectWithId,
87
} from '@naturalcycles/db-lib'
9-
import { JsonSchemaObject } from '@naturalcycles/js-lib'
8+
import { JsonSchemaObject, ObjectWithId } from '@naturalcycles/js-lib'
109
import { Debug } from '@naturalcycles/nodejs-lib'
1110
import { boldWhite } from '@naturalcycles/nodejs-lib/dist/colors'
1211
import { Database, open } from 'sqlite'

0 commit comments

Comments
 (0)