0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-04 16:24:22 +01:00
Bootstrap/.github/workflows/bundlewatch.yml

38 lines
693 B
YAML
Raw Normal View History

2020-06-12 20:12:53 +02:00
name: Bundlewatch
on:
push:
branches-ignore:
- "dependabot/**"
pull_request:
2020-06-12 20:12:53 +02:00
env:
FORCE_COLOR: 2
NODE: 14
2020-06-12 20:12:53 +02:00
jobs:
bundlewatch:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
2020-06-12 20:12:53 +02:00
with:
node-version: "${{ env.NODE }}"
cache: npm
2020-06-12 20:12:53 +02:00
- name: Install npm dependencies
run: npm ci
- name: Run dist
run: npm run dist
- name: Run bundlewatch
run: npm run bundlewatch
env:
BUNDLEWATCH_GITHUB_TOKEN: "${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}"
CI_BRANCH_BASE: v4-dev