This repository was archived by the owner on May 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +592
-875
lines changed Expand file tree Collapse file tree 4 files changed +592
-875
lines changed Original file line number Diff line number Diff line change 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
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' }
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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'
109import { Debug } from '@naturalcycles/nodejs-lib'
1110import { boldWhite } from '@naturalcycles/nodejs-lib/dist/colors'
1211import { Database , open } from 'sqlite'
You can’t perform that action at this time.
0 commit comments