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