From 30995b82b1707ea4197ec99e31280eee1894afcc Mon Sep 17 00:00:00 2001 From: Anton Trunov Date: Fri, 14 Jun 2024 15:14:07 +0400 Subject: [PATCH] fix(ci): Windows --- .github/workflows/tact.yml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tact.yml b/.github/workflows/tact.yml index 329296d5d..bc4a5d49f 100644 --- a/.github/workflows/tact.yml +++ b/.github/workflows/tact.yml @@ -28,11 +28,18 @@ jobs: cache: "yarn" - name: Install dependencies - run: | corepack enable yarn install + - name: List installed packages + run: | + yarn list + + - name: Print some environment info + run: | + yarn cross-env echo $NODE_ENV + - name: Build and Test Tact compiler run: | yarn clean @@ -62,6 +69,7 @@ jobs: - name: Run ShellCheck uses: ludeeus/action-shellcheck@master + if: runner.os != 'Windows' with: scandir: "./scripts" @@ -149,8 +157,8 @@ jobs: - name: Test compatibility with Blueprint run: | - yarn create ton -- test-project --type tact-counter --contractName Counter - cd test-project - yarn link @tact-lang/compiler - yarn build + yarn create ton -- test-project --type tact-counter --contractName Counter && + cd test-project && + yarn link @tact-lang/compiler && + yarn build && yarn test