From 2c00927193f849fc863fa878cc419f43a0a3a00e Mon Sep 17 00:00:00 2001 From: Vlad-Stefan Harbuz Date: Tue, 27 Aug 2024 17:20:39 +0100 Subject: [PATCH] deploy.yml: run npm install after checkout --- .github/workflows/deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 901b9d84..d8a69152 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -16,6 +16,8 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + - name: Run npm install + run: npm install - name: Update new member files run: bash ./bin/update-new-members ${{ github.event.before }} - name: Commit member changes, if any