aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/bundlewatch.yml
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2019-09-26 16:25:26 +0300
committerXhmikosR <[email protected]>2020-06-10 08:19:51 +0300
commite7604207a185f506fe75fdc53d2a58ab37591ae2 (patch)
tree5f6d42a517d48317c735ed1a623b4c4b61c1b4ba /.github/workflows/bundlewatch.yml
parent32d18d199c8bc5fe6f993bce53e8d793c5523fca (diff)
downloadbootstrap-e7604207a185f506fe75fdc53d2a58ab37591ae2.tar.xz
bootstrap-e7604207a185f506fe75fdc53d2a58ab37591ae2.zip
Split GitHub Actions.
Everything should be faster now. Also, we can restart a failed workflow and not the whole thing like before.
Diffstat (limited to '.github/workflows/bundlewatch.yml')
-rw-r--r--.github/workflows/bundlewatch.yml38
1 files changed, 38 insertions, 0 deletions
diff --git a/.github/workflows/bundlewatch.yml b/.github/workflows/bundlewatch.yml
new file mode 100644
index 000000000..5a2ccc877
--- /dev/null
+++ b/.github/workflows/bundlewatch.yml
@@ -0,0 +1,38 @@
+name: Bundlewatch
+on: [push, pull_request]
+env:
+ CI: true
+ NODE: 10.x
+
+jobs:
+ bundlewatch:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Clone repository
+ uses: actions/checkout@v2
+
+ - name: Set Node.js version
+ uses: actions/setup-node@v1
+ with:
+ node-version: "${{ env.NODE }}"
+
+ - name: Set up npm cache
+ uses: actions/cache@v2
+ with:
+ path: ~/.npm
+ key: ${{ runner.os }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}-${{ hashFiles('.github/workflows/bundlesize.yml') }}
+ restore-keys: |
+ ${{ runner.OS }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}-${{ hashFiles('.github/workflows/bundlesize.yml') }}
+ ${{ runner.OS }}-node-v${{ env.NODE }}-
+
+ - 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 }}"