Skip to content

build(deps-dev): bump mini-css-extract-plugin from 2.7.5 to 2.8.1 #2234

build(deps-dev): bump mini-css-extract-plugin from 2.7.5 to 2.8.1

build(deps-dev): bump mini-css-extract-plugin from 2.7.5 to 2.8.1 #2234

Workflow file for this run

name: Build / Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, lerna bootstrap, run build and test
run: |
npm i -g npm
npm i
npm run build --if-present
npm run lint
npm run test -- -- --coverage
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v2.2.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
base-path: ./packages/purgecss
env:
CI: true