Bump webpack-dev-server from 4.15.1 to 5.2.4 #3761
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: push | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '16.x' | |
| - name: Cache node modules | |
| uses: actions/cache@v4 | |
| with: | |
| path: node_modules | |
| key: ${{ runner.os }}-cache-${{ hashFiles('**/yarn.lock') }} | |
| - name: Run yarn | |
| run: yarn --frozen-lockfile | |
| - name: Run yarn lint | |
| run: yarn lint | |
| - name: Run yarn test | |
| run: yarn test |