try just running parallel test
This commit is contained in:
11
.github/workflows/main.yml
vendored
11
.github/workflows/main.yml
vendored
@@ -11,16 +11,17 @@ env:
|
|||||||
TEST_GUILD_ID: ${{ secrets.TEST_GUILD_ID }}
|
TEST_GUILD_ID: ${{ secrets.TEST_GUILD_ID }}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
run-scripts:
|
run-commands:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
script:
|
command:
|
||||||
- -C packages/docs test
|
- name: test
|
||||||
|
run: pnpm test --parallel --color
|
||||||
# - lint
|
# - lint
|
||||||
# - typecheck
|
# - typecheck
|
||||||
# - build
|
# - build
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
name: ${{ matrix.script }}
|
name: ${{ matrix.command.name }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@@ -30,4 +31,4 @@ jobs:
|
|||||||
node-version: "16"
|
node-version: "16"
|
||||||
- run: npm i -g pnpm
|
- run: npm i -g pnpm
|
||||||
- run: pnpm install --frozen-lockfile
|
- run: pnpm install --frozen-lockfile
|
||||||
- run: pnpm run ${{ matrix.script }}
|
- run: ${{ matrix.command.run }}
|
||||||
|
|||||||
Reference in New Issue
Block a user