Skip to content

chore(deps): update dependency autoprefixer to v10.4.19 #1054

chore(deps): update dependency autoprefixer to v10.4.19

chore(deps): update dependency autoprefixer to v10.4.19 #1054

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16.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@54348661b421a895219a6c9d4d3d45a830203b91
with:
webpackStatsFile: ./artifacts/webpack-stats.json
key: ${{ secrets.RELATIVE_CI_KEY }}
token: ${{ secrets.GITHUB_TOKEN }}
debug: true