2019-09-26 15:25:26 +02:00
|
|
|
name: Bundlewatch
|
2020-06-10 17:51:28 +02:00
|
|
|
on: [push, pull_request]
|
2019-09-26 15:25:26 +02:00
|
|
|
env:
|
|
|
|
CI: true
|
2020-04-29 08:59:00 +02:00
|
|
|
NODE: 12.x
|
2019-09-26 15:25:26 +02:00
|
|
|
|
|
|
|
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
|
2020-06-10 07:29:22 +02:00
|
|
|
key: ${{ runner.os }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
|
2019-09-26 15:25:26 +02:00
|
|
|
restore-keys: |
|
2020-06-10 07:29:22 +02:00
|
|
|
${{ runner.OS }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
|
2019-09-26 15:25:26 +02:00
|
|
|
${{ 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 }}"
|
2020-06-17 14:23:48 +02:00
|
|
|
CI_BRANCH_BASE: main
|