Skip to content

chore(deps): bump webpack-dev-middleware from 5.2.2 to 5.3.4 #15

chore(deps): bump webpack-dev-middleware from 5.2.2 to 5.3.4

chore(deps): bump webpack-dev-middleware from 5.2.2 to 5.3.4 #15

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
- develop
paths-ignore:
- '**.md'
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache Yarn
uses: actions/cache@v4
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn
- name: Test
run: yarn test
env:
CI: true