From 57a78b6ac4d8c884540dc13a1b67995a0b63dbfa Mon Sep 17 00:00:00 2001 From: alexandermake <116346075+alexandermake@users.noreply.github.com> Date: Mon, 18 Nov 2024 11:00:09 +0200 Subject: [PATCH] Update dev-deploy.yaml --- .github/workflows/dev-deploy.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/dev-deploy.yaml b/.github/workflows/dev-deploy.yaml index 67361c2..daa387c 100644 --- a/.github/workflows/dev-deploy.yaml +++ b/.github/workflows/dev-deploy.yaml @@ -17,9 +17,19 @@ jobs: runs-on: ubuntu-latest container: node:22.8.0 + strategy: + matrix: + node-version: [22.x] + steps: - uses: actions/checkout@v3 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + registry-url: 'https://registry.npmjs.org' + - name: Build run: | npm install