-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e3bac53
commit 671966d
Showing
1 changed file
with
14 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -341,23 +341,19 @@ jobs: | |
run: (cd packages/flow-dev-tools && yarn install | cat) | ||
- name: Run tool tests | ||
run: ./tool test --bin bin/macos/flow | cat | ||
# tool_test_win: | ||
# runs-on: windows-latest | ||
# needs: | ||
# - build_win | ||
# steps: | ||
# - uses: actions/[email protected] | ||
# - name: Install Node LTS | ||
# run: choco install nodejs-lts -y | ||
# - name: Enable Corepack | ||
# run: corepack enable | ||
# - name: Install tool deps from yarn | ||
# run: |- | ||
# cd packages/flow-dev-tools | ||
# yarn install --ignore-scripts --pure-lockfile | ||
# - name: Run tool tests | ||
# run: node packages/flow-dev-tools/bin/tool test --bin bin/win64/flow.exe --parallelism 1 | ||
# shell: bash | ||
tool_test_win: | ||
runs-on: windows-latest | ||
needs: | ||
- build_win | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Install tool deps from yarn | ||
run: |- | ||
cd packages/flow-dev-tools | ||
yarn install --ignore-scripts --pure-lockfile | ||
- name: Run tool tests | ||
run: node packages/flow-dev-tools/bin/tool test --bin bin/win64/flow.exe --parallelism 1 | ||
shell: bash | ||
ounit_test_linux: | ||
runs-on: ubuntu-latest | ||
container: | ||
|
@@ -662,4 +658,4 @@ jobs: | |
# run: | | ||
# echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc | ||
# npm publish ./dist/npm-try-flow-website-js.tgz | ||
|
||
|