From 8903fdb699fc3b852687dbed780bb8ffeb19f311 Mon Sep 17 00:00:00 2001 From: Bob Jr Date: Tue, 21 Nov 2023 16:45:11 +0700 Subject: [PATCH] update github action --- .github/workflows/devnet_teleport.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/devnet_teleport.yml b/.github/workflows/devnet_teleport.yml index 33369284..54f07d5d 100644 --- a/.github/workflows/devnet_teleport.yml +++ b/.github/workflows/devnet_teleport.yml @@ -20,9 +20,11 @@ jobs: uses: actions/setup-node@v3 with: node-version: '10.6' + - name: Install Python + run: sudo apt install python2 - name: Install package run: | - mkdir build && mkdir build/contracts && cp abis/*json build/contracts && npm i -g node-gyp@7.1.2 && npm ci --no-audit + mkdir build && mkdir build/contracts && cp abis/*json build/contracts && npm ci --python=python2 --no-audit - name: Build run: npm run build