From 674e566598a59915348000c4903f9fe006593ea6 Mon Sep 17 00:00:00 2001 From: SuperCoolYun Date: Wed, 20 Mar 2024 19:16:14 -0400 Subject: [PATCH] %near-gateways frontend up to date --- .github/workflows/build-check.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-check.yml b/.github/workflows/build-check.yml index acf3d5ff..6ac0b0b2 100644 --- a/.github/workflows/build-check.yml +++ b/.github/workflows/build-check.yml @@ -13,17 +13,18 @@ jobs: - uses: actions/setup-node@v3 with: - node-version: "16.x" - + node-version: '16.x' + - name: Create target directory and copy file run: | - mkdir -p near/target - cp near/dist/index.js near/target/index.js - + cd near + mkdir target + cp dist/index.js target/index.js + - name: Install dependencies run: yarn working-directory: ./near - + - name: Build run: yarn build working-directory: ./near @@ -39,5 +40,5 @@ jobs: uses: actions/github-script@v3 with: script: | - core.setFailed('The dist/index.js seems to be stale. Please run *yarn build* and commit the dist/index.js file.') + core.setFailed('The dist/index.js seems to be stale. Please run *yarn build* and commit the dist/index.js file.') working-directory: ./near