|
@@ -16,9 +16,8 @@ jobs:
|
|
node-version: ${{ matrix.node-version }}
|
|
node-version: ${{ matrix.node-version }}
|
|
- name: build
|
|
- name: build
|
|
run: |
|
|
run: |
|
|
- cd pioneer
|
|
|
|
yarn install --frozen-lockfile
|
|
yarn install --frozen-lockfile
|
|
- yarn build
|
|
|
|
|
|
+ yarn workspace pioneer build
|
|
|
|
|
|
pioneer_build_osx:
|
|
pioneer_build_osx:
|
|
name: MacOS Build
|
|
name: MacOS Build
|
|
@@ -34,9 +33,8 @@ jobs:
|
|
node-version: ${{ matrix.node-version }}
|
|
node-version: ${{ matrix.node-version }}
|
|
- name: build
|
|
- name: build
|
|
run: |
|
|
run: |
|
|
- cd pioneer
|
|
|
|
yarn install --frozen-lockfile --network-timeout 120000
|
|
yarn install --frozen-lockfile --network-timeout 120000
|
|
- yarn build
|
|
|
|
|
|
+ yarn workspace pioneer build
|
|
|
|
|
|
pioneer_lint_ubuntu:
|
|
pioneer_lint_ubuntu:
|
|
name: Ubuntu Linting
|
|
name: Ubuntu Linting
|
|
@@ -52,9 +50,8 @@ jobs:
|
|
node-version: ${{ matrix.node-version }}
|
|
node-version: ${{ matrix.node-version }}
|
|
- name: lint
|
|
- name: lint
|
|
run: |
|
|
run: |
|
|
- cd pioneer
|
|
|
|
yarn install --frozen-lockfile
|
|
yarn install --frozen-lockfile
|
|
- yarn lint
|
|
|
|
|
|
+ yarn workspace pioneer lint
|
|
|
|
|
|
pioneer_lint_osx:
|
|
pioneer_lint_osx:
|
|
name: MacOS Linting
|
|
name: MacOS Linting
|
|
@@ -70,6 +67,5 @@ jobs:
|
|
node-version: ${{ matrix.node-version }}
|
|
node-version: ${{ matrix.node-version }}
|
|
- name: lint
|
|
- name: lint
|
|
run: |
|
|
run: |
|
|
- cd pioneer
|
|
|
|
yarn install --frozen-lockfile --network-timeout 120000
|
|
yarn install --frozen-lockfile --network-timeout 120000
|
|
- yarn lint
|
|
|
|
|
|
+ yarn workspace pioneer lint
|