Skip to content

increase timeout to accommodate npm #1465

increase timeout to accommodate npm

increase timeout to accommodate npm #1465

Workflow file for this run

name: Bundlewatch
on:
push:
branches-ignore:
- "dependabot/**"
workflow_dispatch:
env:
# check production bundle sizes
VITE_APP_ENV: production
FORCE_COLOR: 2
NODE: 20
CI_REPO_OWNER: umn-latis
CI_REPO_NAME: chimein2.0
jobs:
bundlewatch:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Node.js
uses: actions/setup-node@v4.0.0
with:
node-version: "${{ env.NODE }}"
- name: Install npm dependencies
run: npm ci
- name: Run dist
run: npm run build
- name: Run bundlewatch
run: npm run bundlewatch
env:
BUNDLEWATCH_GITHUB_TOKEN: "${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}"
CI_BRANCH_BASE: develop