From 36439e3e6542582b11aac029bdd05650099f3956 Mon Sep 17 00:00:00 2001 From: Lenny Peters Date: Sat, 28 Sep 2024 16:04:27 -0700 Subject: [PATCH] =?UTF-8?q?ci:=20=F0=9F=8E=A1=20addressing=20missing=20bui?= =?UTF-8?q?ld=20step?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0e08c51..92d779a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -93,6 +93,13 @@ jobs: deploy: runs-on: ubuntu-latest needs: [lint, test, e2e] + steps: + - uses: actions/checkout@v3 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + - run: npm install if: "!contains(github.event.head_commit.message, '[skip ci]')" steps: - name: Checkout