diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 4b7da5694..d0121c02e 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -31,7 +31,6 @@ jobs: - run: npm install -g npm - run: npm install - - run: npm run lint --workspaces --if-present # build monorepo incl. each subpackage - run: npm run build --workspaces --if-present diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 000000000..7cdf48ff2 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,30 @@ +name: Check Lint +on: + pull_request: + types: + - opened + - reopened + - edited + - synchronize + +jobs: + test: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: true + matrix: + os: [ubuntu-18.04] + ghc: ['8.8.4'] + spec: + - release-0.16 # https://github.com/dfinity-lab/ic-ref/tree/release-0.16 + node: + - 14 + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node }} + - run: npm install -g npm + - run: npm install + - run: npm run lint --workspaces --if-present diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 5ef40e12c..60bb86737 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -33,7 +33,6 @@ jobs: - run: npm install -g npm - run: npm install - - run: npm run lint --workspaces --if-present # build monorepo incl. each subpackage - run: npm run build --workspaces --if-present diff --git a/demos/ledgerhq/package.json b/demos/ledgerhq/package.json index e1ec74ced..d46e98bdd 100644 --- a/demos/ledgerhq/package.json +++ b/demos/ledgerhq/package.json @@ -14,6 +14,7 @@ "process": "^0.11.10", "protobufjs": "^6.10.2", "stream-browserify": "^3.0.0", + "ts-node": "^10.8.2", "util": "^0.12.3", "webpack": "^5.24.1", "webpack-cli": "^4.5.0", diff --git a/demos/sample-javascript/package.json b/demos/sample-javascript/package.json index 521309bb6..c0ba63add 100644 --- a/demos/sample-javascript/package.json +++ b/demos/sample-javascript/package.json @@ -11,6 +11,7 @@ "html-webpack-plugin": "^5.1.0", "process": "^0.11.10", "stream-browserify": "^3.0.0", + "ts-node": "^10.8.2", "util": "^0.12.3", "webpack": "^5.24.1", "webpack-cli": "^4.5.0", diff --git a/docs/generated/changelog.html b/docs/generated/changelog.html index 1849cb3c9..90dc2414b 100644 --- a/docs/generated/changelog.html +++ b/docs/generated/changelog.html @@ -10,9 +10,19 @@

Agent-JS Changelog

+

Version 0.12.2

+

Version 0.12.1