From 967a7fcabeb3eec7d03a8cb22ef551b5541762a3 Mon Sep 17 00:00:00 2001 From: Max Strasinsky <98811342+mstrasinskis@users.noreply.github.com> Date: Thu, 9 Jan 2025 10:45:04 +0100 Subject: [PATCH] Update update-sns-aggregator-response.yml --- .github/workflows/update-sns-aggregator-response.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/update-sns-aggregator-response.yml b/.github/workflows/update-sns-aggregator-response.yml index 55ad1764558..335330056ed 100644 --- a/.github/workflows/update-sns-aggregator-response.yml +++ b/.github/workflows/update-sns-aggregator-response.yml @@ -22,6 +22,13 @@ jobs: - uses: actions/checkout@v4 - name: Update the SNS aggregator response files run: scripts/nns-dapp/replace-sns-aggregator-response.sh + - name: Read Node.js version from .nvmrc + id: node-version + run: echo "NODE_VERSION=$(cat frontend/.nvmrc)" >> $GITHUB_ENV + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: ${{ env.NODE_VERSION }} - name: Format the updated files run: scripts/fmt-frontend - name: Create Pull Request