From ac5a1aeff4a6f60c8094ff71fe669d4085432449 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edimar=20Valent=C3=ADn=20Kery?= Date: Sun, 15 Oct 2023 13:31:45 -0400 Subject: [PATCH] Update webpack.yml --- .github/workflows/webpack.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/webpack.yml b/.github/workflows/webpack.yml index 59564ee..3f0f704 100644 --- a/.github/workflows/webpack.yml +++ b/.github/workflows/webpack.yml @@ -9,18 +9,14 @@ on: jobs: build: runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [16.x, 18.x] - + steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: '18.x' - name: Create dir run: | @@ -37,6 +33,6 @@ jobs: # Artifact name name: public # A file, directory or wildcard pattern that describes what to upload - path: /public + path: public/ # The desired behavior if no files are found using the provided path.