File tree Expand file tree Collapse file tree 6 files changed +6
-4
lines changed
common/src/project/readers Expand file tree Collapse file tree 6 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 8
8
name : pr
9
9
runs-on : ubuntu-latest
10
10
env :
11
- SUBQL_ACCESS_TOEKEN : ${{ secrets.SUBQL_ACCESS_TOEKEN }}
11
+ SUBQL_ACCESS_TOKEN : ${{ secrets.SUBQL_ACCESS_TOKEN }}
12
12
steps :
13
13
- uses : actions/checkout@v2
14
14
- name : Setup Node.js environment
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ All logs must start with the format: [x.y.z] - yyyy-mm-dd
8
8
9
9
## [ Unreleased]
10
10
11
+
11
12
## [ 0.20.1] - 2022-02-15
12
13
### Fixed
13
14
- Patch release with @subql/validator version bump, in order to fix validation issue.
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ const projectSpecV0_2_0: ProjectSpecV0_2_0 = {
39
39
40
40
const ipfsEndpoint = 'http://localhost:5001/api/v0' ;
41
41
// Replace/Update your access token when test locally
42
- const testAuth = process . env . SUBQL_ACCESS_TOEKN ;
42
+ const testAuth = process . env . SUBQL_ACCESS_TOKEN ;
43
43
44
44
jest . setTimeout ( 120000 ) ;
45
45
Original file line number Diff line number Diff line change 2
2
// SPDX-License-Identifier: Apache-2.0
3
3
4
4
import fs from 'fs' ;
5
- import { getProjectRootAndManifest } from '@subql/common/project' ;
6
5
import { IPackageJson } from 'package-json-type' ;
7
6
import { IPFS_REGEX } from '../../constants' ;
7
+ import { getProjectRootAndManifest } from '../../project' ;
8
8
import { GithubReader } from './github-reader' ;
9
9
import { IPFSReader } from './ipfs-reader' ;
10
10
import { LocalReader } from './local-reader' ;
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
+
9
10
## [ 0.28.2] - 2022-02-16
10
11
### Changed
11
12
- Update Polkadot/api to 7.8.1 ,in order to resolve previous release issue (#806 )
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ services:
22
22
DB_DATABASE : postgres
23
23
DB_HOST : postgres
24
24
DB_POST : 5432
25
- SUBQL_ACCESS_TOEKN : ${SUBQL_ACCESS_TOEKN }
25
+ SUBQL_ACCESS_TOKEN : ${SUBQL_ACCESS_TOKEN }
26
26
command :
27
27
- yarn
28
28
- test:all
You can’t perform that action at this time.
0 commit comments