Skip to content

chore(deps): update relative-ci/agent-action digest to ba13968 #1105

chore(deps): update relative-ci/agent-action digest to ba13968

chore(deps): update relative-ci/agent-action digest to ba13968 #1105

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@ba13968f2a0d09757685b0685441cde329806afa
with:
webpackStatsFile: ./artifacts/webpack-stats.json
key: ${{ secrets.RELATIVE_CI_KEY }}
token: ${{ secrets.GITHUB_TOKEN }}
debug: true