Skip to content

chore(deps): update dependency css-loader to v7.1.3 #1296

chore(deps): update dependency css-loader to v7.1.3

chore(deps): update dependency css-loader to v7.1.3 #1296

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '24.x'
- uses: hmarr/debug-action@v2
# Install dependencies
- run: npm ci
# Build and output webpack stats to artifacts/webpack-stats.json
- run: npm run build --if-present
# Send webpack stats and build information to RelativeCI
- name: Send webpack stats to RelativeCI
uses: relative-ci/agent-action@3c681926017930047fc03acaa35cd6a44efcbfc3
with:
webpackStatsFile: ./artifacts/webpack-stats.json
key: ${{ secrets.RELATIVE_CI_KEY }}
token: ${{ secrets.GITHUB_TOKEN }}
debug: true