From 41d444e2505267ddacc3953f4a2b1f9875306b6b Mon Sep 17 00:00:00 2001 From: Christopher Torres <7156279+RavenX8@users.noreply.github.com> Date: Tue, 26 Dec 2023 15:13:33 -0500 Subject: [PATCH] Update yarn_webpack_dev.yml --- .github/workflows/yarn_webpack_dev.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/yarn_webpack_dev.yml b/.github/workflows/yarn_webpack_dev.yml index 6b758f4..e741afd 100644 --- a/.github/workflows/yarn_webpack_dev.yml +++ b/.github/workflows/yarn_webpack_dev.yml @@ -12,18 +12,12 @@ on: jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [18.x] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ - steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} - cache: 'npm' + node-version: '18.x' - name: Install dependencies run: yarn - name: Test webpack development